Added WFC and respective parts (Tile, World, Layer, WFC, ResourceLoader)

This commit is contained in:
=
2026-04-19 13:03:56 +02:00
parent 3e823cecbd
commit e6522f2db9
16 changed files with 749 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
public partial class GameData
{
//Amount of layers generated
public static int ruinSize = 10;
//Width+Height of layers (+1 for the border)
public static int layerSize = 20 + 1;
//Current layer the player wants to see
public static int currentLayer = 0;
//The layer that is currently visible
public static int visibleLayer = 0;
}