Пример #1
0
 public ServerStateChangePayload(uint instructionPointer, VMState.VMExecutionState executionState)
 {
     this.InstructionPointer = instructionPointer;
     this.ExecutionState     = executionState;
 }
Пример #2
0
 public ServerStateChangePayload(BinaryReader reader)
 {
     this.InstructionPointer = reader.ReadUInt32();
     this.ExecutionState     = (VMState.VMExecutionState)reader.ReadByte();
 }
Пример #3
0
 public VMStateException(string message, VMState.VMExecutionState correctState) : base(message)
 {
     this.CorrectState = correctState;
 }