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; } }