예제 #1
0
        public void FindConstants(string exeFileName)
        {
            var exeData = File.ReadAllBytes(exeFileName);

            GTA5Constants.Generate(exeData);
            GTA5Constants.SaveToPath(".");
        }
예제 #2
0
 private void ExtractKeysIntoDirectory(string executableFile, string keyPath)
 {
     GTA5Constants.Generate(File.ReadAllBytes(executableFile));
     GTA5Constants.SaveToPath(keyPath);
 }