public void FindConstants(string exeFileName) { var exeData = File.ReadAllBytes(exeFileName); GTA5Constants.Generate(exeData); GTA5Constants.SaveToPath("."); }
private void ExtractKeysIntoDirectory(string executableFile, string keyPath) { GTA5Constants.Generate(File.ReadAllBytes(executableFile)); GTA5Constants.SaveToPath(keyPath); }