13 lines
232 B
C#
13 lines
232 B
C#
using Godot;
|
|
|
|
namespace FOU.Scripts.Elements;
|
|
|
|
public class Water : Liquid {
|
|
|
|
public Water(int x, int y, ref Level level) : base(x, y, ref level) {
|
|
Color = AddColorVariance(Colors.Blue);
|
|
Density = 1;
|
|
}
|
|
|
|
}
|