public LauncherChooseCharacterManager(LoginCharacterTools loginCharacterTools)
        {
            this.loginCharacterTools = loginCharacterTools;

            launcherChooseCharTimer.Tick    += new EventHandler(launcherChooseCharTimer_Tick);
            launcherChooseCharTimer.Interval = 1000;
        }
Пример #2
0
        public DefaultFirstCharacterManager(LoginCharacterTools loginCharacterTools)
        {
            this.loginCharacterTools = loginCharacterTools;

            defaultFirstCharTimer.Tick    += new EventHandler(defaultFirstCharTimer_Tick);
            defaultFirstCharTimer.Interval = 1000;
        }
Пример #3
0
        public LoginNextCharacterManager(LoginCharacterTools loginCharacterTools)
        {
            this.loginCharacterTools = loginCharacterTools;

            nextCharByInt = -1;

            loginNextCharTimer.Tick    += new EventHandler(defaultFirstCharTimer_Tick);
            loginNextCharTimer.Interval = 1000;
        }