OpenRA.Order.PauseProduction C# (CSharp) Méthode

PauseProduction() public static méthode

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