Files
Gnome-s-Bounty/Assets/Scripts/MapElements/Wall.cs
T
2023-06-27 19:14:42 +03:00

7 lines
133 B
C#

using UnityEngine;
public class Wall : MonoBehaviour, IMapElement
{
public MapElementType ElementType => MapElementType.Wall;
}