DarkEmu_GameServer.Systems.StartBuffTimer C# (CSharp) Метод

StartBuffTimer() публичный Метод

public StartBuffTimer ( int time, byte b_index ) : void
time int
b_index byte
Результат void
        void StartBuffTimer(int time, byte b_index)
        {
            if (Timer.Buff[b_index] != null) Timer.Buff[b_index].Dispose();
            Timer.Buff[b_index] = new Timer(new TimerCallback(Player_Buff_CallBack), b_index, time, 0);
        }
Systems