diff --git a/src/world/map/CMapBaseObj.hpp b/src/world/map/CMapBaseObj.hpp new file mode 100644 index 0000000..c3f43e3 --- /dev/null +++ b/src/world/map/CMapBaseObj.hpp @@ -0,0 +1,9 @@ +#ifndef WORLD_MAP_C_MAP_BASE_OBJ_HPP +#define WORLD_MAP_C_MAP_BASE_OBJ_HPP + +class CMapBaseObj { + public: + // TODO +}; + +#endif diff --git a/src/world/map/CMapEntity.hpp b/src/world/map/CMapEntity.hpp new file mode 100644 index 0000000..156c4fd --- /dev/null +++ b/src/world/map/CMapEntity.hpp @@ -0,0 +1,11 @@ +#ifndef WORLD_MAP_C_MAP_ENTITY_HPP +#define WORLD_MAP_C_MAP_ENTITY_HPP + +#include "world/map/CMapStaticEntity.hpp" + +class CMapEntity : public CMapStaticEntity { + public: + // TODO +}; + +#endif diff --git a/src/world/map/CMapStaticEntity.hpp b/src/world/map/CMapStaticEntity.hpp new file mode 100644 index 0000000..917ea7f --- /dev/null +++ b/src/world/map/CMapStaticEntity.hpp @@ -0,0 +1,11 @@ +#ifndef WORLD_MAP_C_MAP_STATIC_ENTITY_HPP +#define WORLD_MAP_C_MAP_STATIC_ENTITY_HPP + +#include "world/map/CMapBaseObj.hpp" + +class CMapStaticEntity : public CMapBaseObj { + public: + // TODO +}; + +#endif