DarkEmu_GameServer.Systems.StartBuffWait C# (CSharp) 메소드

StartBuffWait() 공개 메소드

public StartBuffWait ( int time ) : void
time int
리턴 void
        void StartBuffWait(int time)
        {
            if (Timer.Casting != null) Timer.Casting.Dispose();
            Timer.Casting = new Timer(new TimerCallback(Player_Casting_CallBack_Check), 0, time, 0);
        }
Systems