Files
OpenRA/OpenRa.Game/Orders/IOrderSource.cs
Chris Forbes a2a00ae599 shuffling
2010-01-02 12:22:34 +13:00

12 lines
266 B
C#

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