diff options
Diffstat (limited to 'global.h')
-rw-r--r-- | global.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,7 +1,7 @@ #pragma once +#include <set> #include <vector> -#include <memory> #include "object_base.h" @@ -10,5 +10,6 @@ using namespace std; class Global{ public: - vector<shared_ptr<Object>> objects; + set<Object*> objects; + vector<Object*> objects_todelete; }; |