OpenRA.Order.PauseProduction C# (CSharp) Method

PauseProduction() public static method

public static PauseProduction ( OpenRA.Actor subject, string item, bool pause ) : Order
subject OpenRA.Actor
item string
pause bool
return Order
        public static Order PauseProduction(Actor subject, string item, bool pause)
        {
            return new Order("PauseProduction", subject, false) { ExtraData = pause ? 1u : 0u, TargetString = item };
        }