Auto stash before merge of "master" and "Gitea/master"

This commit is contained in:
Dynamitos
2024-09-25 17:27:21 +02:00
parent 6417ab940d
commit 81f29d1b3f
16 changed files with 518 additions and 147 deletions
+2
View File
@@ -16,6 +16,7 @@ target_sources(Engine
ShapeBase.cpp
Skybox.h
SphereCollider.h
TerrainTile.h
Transform.h
Transform.cpp
WaterTile.h)
@@ -37,5 +38,6 @@ target_sources(Engine
ShapeBase.h
Skybox.h
SphereCollider.h
TerrainTile.h
Transform.h
WaterTile.h)
+13
View File
@@ -0,0 +1,13 @@
#pragma once
#include "Math/Vector.h"
#include "MinimalEngine.h"
namespace Seele {
namespace Component {
struct TerrainTile {
IVector2 location;
float height;
constexpr static float DIMENSIONS = 10;
};
} // namespace Component
} // namespace Seele