DarkEmu_GameServer.Systems.StartCastingTimer C# (CSharp) Méthode

StartCastingTimer() public méthode

public StartCastingTimer ( int time, object list ) : void
time int
list object
Résultat void
        void StartCastingTimer(int time, object list)
        {
            if (Timer.Casting != null) Timer.Casting.Dispose();
            Timer.Casting = new Timer(new TimerCallback(Player_Casting_CallBack), list, time, 0);
        }
Systems