mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-02 08:42:45 +03:00
Compare commits
2 Commits
8cf0abb1b1
...
536c94a7b7
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
536c94a7b7 | ||
|
|
88ea9325be |
8
src/world/Types.hpp
Normal file
8
src/world/Types.hpp
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
#ifndef WORLD_TYPES_HPP
|
||||||
|
#define WORLD_TYPES_HPP
|
||||||
|
|
||||||
|
#include <cstdint>
|
||||||
|
|
||||||
|
typedef uintptr_t HWORLDOBJECT;
|
||||||
|
|
||||||
|
#endif
|
||||||
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