예제 #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);
        }