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