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
@@ -0,0 +1,7 @@
using UnityEngine;
[CreateAssetMenu()]
public class MapElementSO : ScriptableObject
{
public MapElementType ElementType;
}