17 lines
375 B
C#
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;
|
|||
|
}
|
|||
|
}
|