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

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

public StartPotionTimer ( int time, object e, ushort i ) : void
time int
e object
i ushort
Результат void
        void StartPotionTimer(int time, object e, ushort i)
        {
            Timer.Potion[i] = new Timer(new TimerCallback(Player_Potion_CallBack), e, 0, time);
        }
Systems