CSPspEmu.Hle.Managers.HleInterruptHandler.HleInterruptHandler C# (CSharp) Метод

HleInterruptHandler() приватный Метод

private HleInterruptHandler ( HleInterruptManager HleInterruptManager, PspInterrupts PspInterrupt, HleCallbackManager HleCallbackManager ) : System.Collections.Generic
HleInterruptManager HleInterruptManager
PspInterrupt PspInterrupts
HleCallbackManager HleCallbackManager
Результат System.Collections.Generic
        internal HleInterruptHandler(HleInterruptManager HleInterruptManager, PspInterrupts PspInterrupt, HleCallbackManager HleCallbackManager)
        {
            this.HleInterruptManager = HleInterruptManager;
            this.PspInterrupt = PspInterrupt;
            this.HleCallbackManager = HleCallbackManager;
            this.SubinterruptHandlers = new HleSubinterruptHandler[16];
            for (int Index = 0; Index < this.SubinterruptHandlers.Length; Index++)
            {
                this.SubinterruptHandlers[Index] = new HleSubinterruptHandler(Index);
            }
        }