Compare commits

..

No commits in common. "536c94a7b71c6e98324a9641a68a148993d0d2ac" and "8cf0abb1b1e48cb63ea053a8ceb4db9c3086e372" have entirely different histories.

4 changed files with 0 additions and 39 deletions

View File

@ -1,8 +0,0 @@
#ifndef WORLD_TYPES_HPP
#define WORLD_TYPES_HPP
#include <cstdint>
typedef uintptr_t HWORLDOBJECT;
#endif

View File

@ -1,9 +0,0 @@
#ifndef WORLD_MAP_C_MAP_BASE_OBJ_HPP
#define WORLD_MAP_C_MAP_BASE_OBJ_HPP
class CMapBaseObj {
public:
// TODO
};
#endif

View File

@ -1,11 +0,0 @@
#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

@ -1,11 +0,0 @@
#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