mirror of
https://github.com/ConjureETS/Unity_Utils.git
synced 2026-03-23 20:40:58 +00:00
15 lines
329 B
C#
15 lines
329 B
C#
using System;
|
|
using Canvases.Components;
|
|
using UnityEngine;
|
|
|
|
namespace Canvases.Menu.Rebind
|
|
{
|
|
[Serializable]
|
|
public class RebindReferences
|
|
{
|
|
public TextUIComponent Text;
|
|
public ButtonUIComponent Button;
|
|
public ImageUIComponent Image;
|
|
[HideInInspector] public int Index = -1;
|
|
}
|
|
} |