diff options
Diffstat (limited to '')
-rw-r--r-- | src/T2DLL/T2Terrorist.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/T2DLL/T2Terrorist.h b/src/T2DLL/T2Terrorist.h new file mode 100644 index 0000000..1549258 --- /dev/null +++ b/src/T2DLL/T2Terrorist.h @@ -0,0 +1,24 @@ +#pragma once +#include "common.h" + +class T2Terrorist { +public: + T2Terrorist(T2TowerEvent*, CResFile*, int); + virtual ~T2Terrorist(); + virtual int Start(T2TowerDoc*); +protected: + void SetupSound(); + void DisposeSound(); +public: + virtual int Exec(T2TowerDoc*); + virtual void StopEvent(T2TowerDoc*); + virtual unsigned int DialogHook(T2EventDialog*, unsigned int, T2TowerDoc*); +protected: + virtual void SetupDialog(T2Dialog*); + +public: + virtual unsigned long GetID() {} + int IsBombHideRoom(unsigned int) {} + T2Terrorist(const T2Terrorist&) {} + T2Terrorist& operator=(const T2Terrorist&) {} +}; |