DarkEmu_GameServer.Systems.StartAttackTimer C# (CSharp) Method

StartAttackTimer() public method

public StartAttackTimer ( int time ) : void
time int
return void
        void StartAttackTimer(int time)
        {
            if (Timer.Attack != null) Timer.Attack.Dispose();
            Timer.Attack = new Timer(new TimerCallback(Player_Attack_CallBack), 0, 0, time);
        }
Systems