DarkEmu_GameServer.Systems.StartPotionTimer C# (CSharp) Method

StartPotionTimer() public method

public StartPotionTimer ( int time, object e, ushort i ) : void
time int
e object
i ushort
return void
        void StartPotionTimer(int time, object e, ushort i)
        {
            Timer.Potion[i] = new Timer(new TimerCallback(Player_Potion_CallBack), e, 0, time);
        }
Systems