change MapElement to scriptable object

This commit is contained in:
2023-06-27 20:33:07 +03:00
parent 26daa563e8
commit a861712e6c
17 changed files with 87 additions and 47 deletions
+8
View File
@@ -0,0 +1,8 @@
using UnityEngine;
public class MapElement:MonoBehaviour
{
[SerializeField]
private MapElementSO _elementSO;
public MapElementSO ElementSO => _elementSO;
}