20 lines
No EOL
363 B
C#
20 lines
No EOL
363 B
C#
using System;
|
|
|
|
namespace Server.Engines.CannedEvil
|
|
{
|
|
public class RestartTimer : Timer
|
|
{
|
|
private ChampionSpawn m_Spawn;
|
|
|
|
public RestartTimer( ChampionSpawn spawn, TimeSpan delay ) : base( delay )
|
|
{
|
|
m_Spawn = spawn;
|
|
Priority = TimerPriority.FiveSeconds;
|
|
}
|
|
|
|
protected override void OnTick()
|
|
{
|
|
m_Spawn.EndRestart();
|
|
}
|
|
}
|
|
} |