コード例 #1
0
 public MessageShipBasic(ShipCommandEnum type, Int64 targetId)
 {
     CommandType = type;
     TargetId    = targetId;
 }
コード例 #2
0
 public MessageShipDocking(ShipCommandEnum type, Int64 dockingTargetId)
 {
     CommandType     = type;
     DockingTargetId = dockingTargetId;
 }
コード例 #3
0
 public MessageShipSetXY(ShipCommandEnum type, Double x, Double y)
 {
     CommandType = type;
     X           = x;
     Y           = y;
 }
コード例 #4
0
 public MessageShipBasic(ShipCommandEnum type)
 {
     CommandType = type;
 }
コード例 #5
0
 public MessageShipSetAutopilot(ShipCommandEnum type, bool active)
 {
     CommandType = type;
     Active      = active;
 }
コード例 #6
0
 public MessageShipSetDestination(ShipCommandEnum type, Int64 desinationScId)
 {
     CommandType = type;
     DestinationScId = desinationScId;
 }
コード例 #7
0
 public MessageShipSetDestination(ShipCommandEnum type, Int64 destinationScId)
 {
     CommandType = type;
     DestinationScId = destinationScId;
 }