summaryrefslogtreecommitdiffstats
path: root/src/check.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/check.h')
-rw-r--r--src/check.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/check.h b/src/check.h
new file mode 100644
index 0000000..35aa543
--- /dev/null
+++ b/src/check.h
@@ -0,0 +1,32 @@
+// check.h
+
+#ifndef _CHECK_H_
+#define _CHECK_H_
+
+
+#include "control.h"
+
+
+class CD3DEngine;
+
+
+
+class CCheck : public CControl
+{
+public:
+ CCheck(CInstanceManager* iMan);
+ ~CCheck();
+
+ BOOL Create(FPOINT pos, FPOINT dim, int icon, EventMsg eventMsg);
+
+ BOOL EventProcess(const Event &event);
+
+ void Draw();
+
+protected:
+
+protected:
+};
+
+
+#endif //_CHECK_H_