Ejemplo n.º 1
0
        public bool Hook(string processName)
        {
            if (!Memory.Attach(processName))
            {
                return(false);
            }

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

            return(ClientModule != null);
        }