Ejemplo n.º 1
0
 public MessageShipBasic(ShipCommandEnum type, Int64 targetId)
 {
     CommandType = type;
     TargetId    = targetId;
 }
Ejemplo n.º 2
0
 public MessageShipDocking(ShipCommandEnum type, Int64 dockingTargetId)
 {
     CommandType     = type;
     DockingTargetId = dockingTargetId;
 }
Ejemplo n.º 3
0
 public MessageShipSetXY(ShipCommandEnum type, Double x, Double y)
 {
     CommandType = type;
     X           = x;
     Y           = y;
 }
Ejemplo n.º 4
0
 public MessageShipBasic(ShipCommandEnum type)
 {
     CommandType = type;
 }
Ejemplo n.º 5
0
 public MessageShipSetAutopilot(ShipCommandEnum type, bool active)
 {
     CommandType = type;
     Active      = active;
 }
 public MessageShipSetDestination(ShipCommandEnum type, Int64 desinationScId)
 {
     CommandType = type;
     DestinationScId = desinationScId;
 }
 public MessageShipSetDestination(ShipCommandEnum type, Int64 destinationScId)
 {
     CommandType = type;
     DestinationScId = destinationScId;
 }