Esempio n. 1
0
        public IncomingPackets(bool initDynamicCalls)
        {
            HookRegistry.Register(OnCall);
            reentrant = false;

            if (initDynamicCalls)
            {
                PrepareDynamicCalls();
            }
        }
Esempio n. 2
0
        public OutgoingPackets(bool initDynamicCalls)
        {
            HookRegistry.Register(OnCall);
            reentrant = false;

            if (initDynamicCalls)
            {
                PrepareDynamicCalls();
                RegisterGenericDeclaringTypes();
            }
        }
Esempio n. 3
0
 public Hook()
 {
     HookRegistry.Register(YandereNext.YandereNextManager.StartHook);
 }