mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-01 00:02:45 +03:00
feat(world): stub core map entity classes
This commit is contained in:
parent
8cf0abb1b1
commit
88ea9325be
9
src/world/map/CMapBaseObj.hpp
Normal file
9
src/world/map/CMapBaseObj.hpp
Normal file
@ -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
|
||||
11
src/world/map/CMapEntity.hpp
Normal file
11
src/world/map/CMapEntity.hpp
Normal file
@ -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
|
||||
11
src/world/map/CMapStaticEntity.hpp
Normal file
11
src/world/map/CMapStaticEntity.hpp
Normal file
@ -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
|
||||
Loading…
Reference in New Issue
Block a user