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