test voxel structures generation

This commit is contained in:
MihailRis
2024-09-21 17:21:47 +03:00
parent cba1a5c23e
commit 03ba7c9539
9 changed files with 164 additions and 40 deletions
@@ -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)) {}
};