Example #1
0
 public BaseOrder(Player playerOwner, GameConstants.OrderType orderType,
                  BaseMovableObject assignedEntity)
     : this()
 {
     OwnerPlayer    = playerOwner;
     OrderType      = orderType;
     AssignedEntity = assignedEntity;
 }
Example #2
0
 public BaseOrder(Player playerOwner, GameConstants.OrderType orderType)
     : this()
 {
     OwnerPlayer = playerOwner;
     OrderType   = orderType;
 }