14 lines
258 B
C#
14 lines
258 B
C#
using Godot;
|
|
|
|
namespace FOU.Scripts.Elements;
|
|
|
|
public class Dirt : Solid {
|
|
|
|
public Dirt(int x, int y, ref Chunk chunk) : base(x, y, ref chunk) {
|
|
Color = AddColorVariance(Colors.Brown);
|
|
Density = 10;
|
|
DiffuseSpeed = 50;
|
|
}
|
|
|
|
}
|