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