Firstborn/Assets/RPG Creation Kit/Scripts/Quest System/Player/Quest Manager UI/Naviagation Menu/NavigationElement.cs
Schaken-Mods 959e80cf72 assets upload
assets upload description.
2023-03-28 12:16:30 -05:00

17 lines
375 B
C#

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