9 lines
141 B
C++
9 lines
141 B
C++
#include <vector>
|
|
|
|
#include <glm/glm/glm.hpp>
|
|
|
|
struct Chunk {
|
|
glm::ivec3 pos;
|
|
std::vector<uint16_t> data;
|
|
bool dirty = false;
|
|
};
|