Foerming/Assets/Scripts/Tiles/WaterTile.cs
2022-06-08 23:32:24 +02:00

12 lines
No EOL
171 B
C#

using UnityEngine;
namespace Tiles
{
public class WaterTile : BaseTile
{
public WaterTile() : base(null, null)
{
}
}
}