10 lines
156 B
C#
10 lines
156 B
C#
using UnityEngine.UI;
|
|
|
|
namespace AlicizaX.UI.Extension
|
|
{
|
|
public interface IButton
|
|
{
|
|
Button.ButtonClickedEvent onClick { get; set; }
|
|
}
|
|
}
|