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