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

StartPotionTimer() public méthode

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