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