feat: saving entities (WIP)

This commit is contained in:
MihailRis
2024-07-05 05:16:31 +03:00
parent 019a88ef84
commit f0270d3391
24 changed files with 290 additions and 101 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ struct AABB {
AABB(glm::vec3 size) : a(0.0f), b(size) {
}
AABB(glm::vec3 pos, glm::vec3 size) : a(pos), b(size) {
AABB(glm::vec3 a, glm::vec3 b) : a(a), b(b) {
}
/// @brief Get AABB point with minimal x,y,z