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

7 lines
137 B
C#

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