using System.Collections; using System.Collections.Generic; using UnityEngine; using RPGCreationKit; namespace RPGCreationKit { /// /// An element of the NavigationMenu /// public class NavigationElement : MonoBehaviour { // The target is the assigned Tab (Container) of a Toggle public GameObject Target; } }