9 lines
172 B
C#
9 lines
172 B
C#
using UnityEngine;
|
|
|
|
public class MapElement:MonoBehaviour
|
|
{
|
|
[SerializeField]
|
|
private MapElementSO _elementSO;
|
|
public MapElementSO ElementSO => _elementSO;
|
|
}
|