Trying to add water

This commit is contained in:
Dynamitos
2024-08-13 22:44:04 +02:00
parent 97244e87c1
commit 252a241208
43 changed files with 1408 additions and 219 deletions
+15
View File
@@ -0,0 +1,15 @@
#pragma once
#include "MinimalEngine.h"
#include "Math/Vector.h"
namespace Seele {
namespace Component
{
struct WaterTile
{
IVector2 location;
float height;
constexpr static float DIMENSIONS = 100;
};
}
}