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