Foerming/Assets/Scripts/Tiles/WaterTile.cs
2022-05-18 22:53:23 +02:00

12 lines
No EOL
171 B
C#

using UnityEngine;
namespace Tiles
{
public class WaterTile : BaseTile
{
public WaterTile() : base(Color.blue)
{
}
}
}