timelimit function now gets initialized

--HG--
extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%401414
This commit is contained in:
David Anderson 2007-09-11 18:08:49 +00:00
parent 293705f63f
commit 641041b906
2 changed files with 6 additions and 0 deletions

View File

@ -63,6 +63,11 @@ void ITimer::Initialize(ITimedEvent *pCallbacks, float fInterval, float fToExec,
m_KillMe = false;
}
TimerSystem::TimerSystem()
{
m_fnTimeLeft = NULL;
}
TimerSystem::~TimerSystem()
{
CStack<ITimer *>::iterator iter;

View File

@ -62,6 +62,7 @@ class TimerSystem :
public SMGlobalClass
{
public:
TimerSystem();
~TimerSystem();
public: //SMGlobalClass
void OnSourceModAllInitialized();