trimming fat; own files; etc

This commit is contained in:
Chris Forbes
2009-12-05 11:56:16 +13:00
parent 0d81683e34
commit c171185034
22 changed files with 218 additions and 223 deletions

View File

@@ -0,0 +1,11 @@
using System.Collections.Generic;
namespace OpenRa.Game
{
interface IOrderSource
{
void SendLocalOrders(int localFrame, List<Order> localOrders);
List<Order> OrdersForFrame(int currentFrame);
bool IsReadyForFrame(int frameNumber);
}
}