diff options
Diffstat (limited to 'global.h')
-rw-r--r-- | global.h | 17 |
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_ |