summaryrefslogtreecommitdiffstats
path: root/engine/include/flatobject.h
diff options
context:
space:
mode:
Diffstat (limited to 'engine/include/flatobject.h')
-rw-r--r--engine/include/flatobject.h36
1 files changed, 0 insertions, 36 deletions
diff --git a/engine/include/flatobject.h b/engine/include/flatobject.h
deleted file mode 100644
index 7ad1ddd..0000000
--- a/engine/include/flatobject.h
+++ /dev/null
@@ -1,36 +0,0 @@
-#ifndef __FLATOBJECT_H__
-#define __FLATOBJECT_H__
-
-#include <list>
-#include <vector>
-#include <string>
-#include <initializer_list>
-
-#include "types.h"
-
-class FlatObject
-{
- std::string id;
-
- /* Common list of objects */
- static std::list<FlatObject*> allObjects;
-
-public:
-
- FlatObject();
- ~FlatObject();
-
- void setID(const std::string&);
-
- const std::string& getID() const;
-
- /* Static accessors to allObject */
-
- static bool isAllocated(FlatObject*);
-
- static std::vector<FlatObject*>& getByID(const std::string& id, std::vector<FlatObject*>&);
-
- static std::string randomID(Uint8 length = 8);
-};
-
-#endif