test voxel structures generation
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
#pragma once
|
||||
|
||||
#include <glm/glm.hpp>
|
||||
|
||||
struct StructurePlacement {
|
||||
int structure;
|
||||
|
||||
glm::ivec3 position;
|
||||
|
||||
StructurePlacement(int structure, glm::ivec3 position)
|
||||
: structure(structure), position(std::move(position)) {}
|
||||
};
|
||||
Reference in New Issue
Block a user