Server.SkillHandlers.AnimalTaming.InternalTarget.InternalTimer.InternalTimer C# (CSharp) Méthode

InternalTimer() public méthode

public InternalTimer ( Mobile tamer, BaseCreature creature, int count ) : System
tamer Mobile
creature Server.Mobiles.BaseCreature
count int
Résultat System
				public InternalTimer( Mobile tamer, BaseCreature creature, int count ) : base( TimeSpan.FromSeconds( 3.0 ), TimeSpan.FromSeconds( 3.0 ), count )
				{
					m_Tamer = tamer;
					m_Creature = creature;
					m_MaxCount = count;
					m_Paralyzed = creature.Paralyzed;
					m_StartTime = DateTime.Now;
					Priority = TimerPriority.TwoFiftyMS;
				}
AnimalTaming.InternalTarget.InternalTimer