16 lines
285 B
C#
16 lines
285 B
C#
using System;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
namespace MedievalParty.Useful
|
|
{
|
|
public class UI_SelectedButton: MonoBehaviour
|
|
{
|
|
[SerializeField] private Button target;
|
|
|
|
private void OnEnable()
|
|
{
|
|
target.Select();
|
|
}
|
|
}
|
|
} |