Files
Gnome-s-Bounty/Assets/Scripts/MapElements/MapElement.cs
T

9 lines
172 B
C#

using UnityEngine;
public class MapElement:MonoBehaviour
{
[SerializeField]
private MapElementSO _elementSO;
public MapElementSO ElementSO => _elementSO;
}