blob: 080957210fabb0e74c044727eb2daed321db5f44 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef PKE_LEVEL_TYPES_HPP
#define PKE_LEVEL_TYPES_HPP
#include "array.hpp"
#include "macros.hpp"
#include "memory-type-defs.hpp"
#include "camera.hpp"
#include "components.hpp"
TypeSafeInt_Const_Expr(LevelHandle, uint16_t, 0xFFFF);
struct LvlCamArr : public PkeArray<CameraHandle> { };
struct PkeLevel : public Entity_Base {
MemBucket *bkt = nullptr;
char name[16] = {};
LevelHandle levelHandle = LevelHandle_MAX;
LvlCamArr cameras;
};
#endif /* PKE_LEVEL_TYPES_HPP */
|