summaryrefslogtreecommitdiff
path: root/src/T2DLL/T2EventDialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/T2DLL/T2EventDialog.h')
-rw-r--r--src/T2DLL/T2EventDialog.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/T2DLL/T2EventDialog.h b/src/T2DLL/T2EventDialog.h
new file mode 100644
index 0000000..886c14d
--- /dev/null
+++ b/src/T2DLL/T2EventDialog.h
@@ -0,0 +1,14 @@
+#pragma once
+#include "common.h"
+#include "T2Dialog.h"
+
+class T2EventDialog : public T2Dialog {
+public:
+ T2EventDialog();
+ virtual void ListenToMessage(unsigned int msg, void* data);
+
+ static T2EventDialog *Show(void *a, T2TowerDoc *inDoc, HINSTANCE inModule, int inResID);
+
+protected:
+ virtual void CreateDlgItem(CTokenizer& tokenizer, T2DialogDef& def);
+};