summaryrefslogtreecommitdiff
path: root/global.h
diff options
context:
space:
mode:
authortomsmeding <hallo@tomsmeding.nl>2015-11-02 06:55:15 +0100
committertomsmeding <hallo@tomsmeding.nl>2015-11-02 06:55:15 +0100
commitdcaa318d677a1a6881ccc87640ae75c0fc578bfb (patch)
tree3ff05dc8494d6629dddfde30f859e0c72e620926 /global.h
Initial
Diffstat (limited to 'global.h')
-rw-r--r--global.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/global.h b/global.h
new file mode 100644
index 0000000..65aaa5e
--- /dev/null
+++ b/global.h
@@ -0,0 +1,17 @@
+#ifndef _GLOBAL_H_
+#define _GLOBAL_H_
+
+#include <vector>
+#include <memory>
+
+#include "object_base.h"
+
+using namespace std;
+
+class Global{
+public:
+ int room_speed=30;
+ vector<shared_ptr<Object>> objects;
+};
+
+#endif //_GLOBAL_H_