using System.Collections.Generic; using Sirenix.OdinInspector; using UnityEngine; namespace Reset.World{ public class World{ public List zones = new List(); public List activeEvents = new List(); public static List ZoneEventsMasterList; void Start(){ } // Update is called once per frame void Update(){ } } }