added amb622, TIMER_FLAG_NO_MAPCHANGE

--HG--
extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%401114
This commit is contained in:
David Anderson
2007-07-14 01:55:15 +00:00
parent 91a1e2faaa
commit c33c27391f
3 changed files with 24 additions and 5 deletions
+2 -1
View File
@@ -59,7 +59,8 @@ namespace SourceMod
virtual void OnTimerEnd(ITimer *pTimer, void *pData) =0;
};
#define TIMER_FLAG_REPEAT (1<<0)
#define TIMER_FLAG_REPEAT (1<<0) /**< Timer will repeat until stopped */
#define TIMER_FLAG_NO_MAPCHANGE (1<<1) /**< Timer will not carry over mapchanges */
class ITimerSystem : public SMInterface
{