Exemplo n.º 1
0
 public CmdServerUpdate(byte[] bytes, int offset = 0) :
     base(Type.sCommand)
 {
     Cmd = ServerCommand.Decode(bytes, offset);
 }
Exemplo n.º 2
0
 //Update will contain passed command that can be executed on the client
 public CmdServerUpdate(ServerCommand command) :
     base(Type.sCommand)
 {
     Cmd = command;
 }