You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
408 B
C#
22 lines
408 B
C#
|
3 years ago
|
using System.Collections;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using UnityEngine;
|
||
|
|
using UnityEngine.UI;
|
||
|
|
using SiegeSong;
|
||
|
|
|
||
|
|
namespace SiegeSong
|
||
|
|
{
|
||
|
|
public class MenuOption : MonoBehaviour
|
||
|
|
{
|
||
|
|
public int Index;
|
||
|
|
public bool InSubmenu;
|
||
|
|
public AudioClip SelectedSound;
|
||
|
|
public Image Background;
|
||
|
|
public Text Text;
|
||
|
|
|
||
|
|
void Start() { }
|
||
|
|
|
||
|
|
void Update() { }
|
||
|
|
}
|
||
|
|
}
|