Exemplo n.º 1
0
 public CheatEngine(IByteEditor byteEditor, CheatList cheatList, int memoryOffset = 0x00000000)
 {
     _byteEditor   = byteEditor;
     _cheatList    = cheatList;
     _memoryOffset = memoryOffset;
 }
Exemplo n.º 2
0
 public CheatEngine(IByteEditor byteEditor, int memoryOffset = 0x00000000)
 {
     _byteEditor   = byteEditor;
     _memoryOffset = memoryOffset;
 }
Exemplo n.º 3
0
 public CheatEngine(IByteEditor byteEditor, CheatList cheatList)
 {
     _byteEditor = byteEditor;
     _cheatList  = cheatList;
 }
Exemplo n.º 4
0
 public CheatEngine(IByteEditor byteEditor)
 {
     _byteEditor = byteEditor;
 }