public ActiveList(MyGame theGame, float updateTickInSeconds) { m_theGame = theGame; m_timer = new PTimer(theGame.TimerManager, OnUpdate); m_timer.Interval = updateTickInSeconds; }
internal void RemoveTimer(PTimer timer) { m_timers.Remove(timer); }
internal void AddTimer(PTimer timer) { m_timers.Add(timer); }