mirror of
https://github.com/ConjureETS/Unity_Utils.git
synced 2026-03-24 13:00:58 +00:00
14 lines
303 B
C#
14 lines
303 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace JohnsonUtils.Canvases
|
|
{
|
|
[Serializable]
|
|
public class RebindReferences
|
|
{
|
|
public TextUIComponent Text;
|
|
public ButtonUIComponent Button;
|
|
public ImageUIComponent Image;
|
|
[HideInInspector] public int Index = -1;
|
|
}
|
|
} |