Initial commit.
This commit is contained in:
commit
82b4f23c06
56 changed files with 3485 additions and 0 deletions
9
Shared/World/Chunk.h
Normal file
9
Shared/World/Chunk.h
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
#include <vector>
|
||||
|
||||
#include <glm/glm/glm.hpp>
|
||||
|
||||
struct Chunk {
|
||||
glm::ivec3 pos;
|
||||
std::vector<uint16_t> data;
|
||||
bool dirty = false;
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue