Exemple #1
0
 internal CommandReceivedEventArgs(ShipCommand packet)
 {
     CommandPacket = packet;
 }
Exemple #2
0
 internal async Task SendShipCommand(ShipCommand shipCommand)
 {
     await _networkConnection.SendPacketToHost(shipCommand);
 }
 public CommandReceivedEventArgs(ShipCommand packet)
 {
     CommandPacket = packet;
 }
Exemple #4
0
 internal void SendShipCommandToHost(ShipCommand shipCommand)
 {
     SendPacketToHost(shipCommand);
 }
Exemple #5
0
 internal static void SendShipCommand(ShipCommand shipCommand)
 {
     SendToHost(shipCommand);
 }