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

View File

@@ -0,0 +1,7 @@
using Godot;
namespace FOU.Scripts.Elements;
public abstract class Element {
public Color Color = Colors.Black;
}