aboutsummaryrefslogtreecommitdiffstats
path: root/yage/util
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-11-12 22:30:20 +0000
committerYann Herklotz <ymherklotz@gmail.com>2017-11-12 22:30:20 +0000
commite68759a4101567a27e306eae0a907baa759ae80c (patch)
treec90733351cb7a8a02f91725118593c1c4f19c563 /yage/util
parent5fb7c972d44a3ce0a067101885d2e0c1966e7c89 (diff)
downloadYAGE-e68759a4101567a27e306eae0a907baa759ae80c.tar.gz
YAGE-e68759a4101567a27e306eae0a907baa759ae80c.zip
Designing simple preview game
Diffstat (limited to 'yage/util')
-rw-r--r--yage/util/active.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/yage/util/active.h b/yage/util/active.h
new file mode 100644
index 00000000..877ab75e
--- /dev/null
+++ b/yage/util/active.h
@@ -0,0 +1,11 @@
+#ifndef YAGE_UTIL_ACTIVE_H
+#define YAGE_UTIL_ACTIVE_H
+
+class Active
+{
+public:
+ Active();
+ virtual ~Active();
+};
+
+#endif