This commit is contained in:
2023-10-16 13:46:42 +02:00
commit 8a6004af24
13 changed files with 552 additions and 0 deletions

9
Scripts/Elements/Dirt.cs Normal file
View File

@@ -0,0 +1,9 @@
using Godot;
namespace FOU.Scripts.Elements;
public class Dirt : Solid {
public Dirt() {
Color = Colors.Brown;
}
}