コード例 #1
0
ファイル: Cheat.cs プロジェクト: ukgarage/unfair
        public bool Hook(string processName)
        {
            if (!Memory.Attach(processName))
            {
                return(false);
            }

            ClientModule = Memory.GetModule("client.dll");
            EngineModule = Memory.GetModule("engine.dll");

            return(ClientModule != null);
        }