Foerming/Assets/Scripts/Tiles/WaterTile.cs
2022-06-03 08:19:02 +02:00

12 lines
No EOL
165 B
C#

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