feat(world): stub core map entity classes

This commit is contained in:
fallenoak 2026-01-20 20:56:04 -06:00
parent 8cf0abb1b1
commit 88ea9325be
No known key found for this signature in database
GPG Key ID: 7628F8E61AEA070D
3 changed files with 31 additions and 0 deletions

View 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

View 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

View 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