init
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
using Godot;
|
||||
|
||||
namespace FOU.Scripts.Elements;
|
||||
|
||||
public class Dirt : Solid {
|
||||
public Dirt() {
|
||||
Color = Colors.Brown;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
using Godot;
|
||||
|
||||
namespace FOU.Scripts.Elements;
|
||||
|
||||
public abstract class Element {
|
||||
public Color Color = Colors.Black;
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
namespace FOU.Scripts.Elements;
|
||||
|
||||
public abstract class Solid : Element {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user