using System; using System.Collections.Generic; using UnityEngine; public class Map : MonoBehaviour { public List npcs = new(); public GameObject mapObject; public List enemies = new(); public List gatheringSpots = new(); public List exits; public void Load() { } }