Files
Main/Assets/Code/Global/Interface/IButtonFunctionInfo.cs

29 lines
652 B
C#
Raw Permalink Normal View History

2025-01-25 04:38:09 +08:00
using System;
using System.Collections.Generic;
using System.Text;
namespace Thousandto.Plugins.Common
{
/// <summary>
/// 按钮功能信息
/// </summary>
public interface IButtonFunctionInfo
{
//图标字符串
string Icon { get;}
//显示文字
string Text { get;}
//序列号
int SortNum { get; }
//是否显示
bool IsVisible { get; }
//是否显示红色点点
bool IsShowRedPoint { get; }
//是否显示特效
bool IsEffectShow { get; }
//点击按钮后的回调
void OnClickHandler(object param);
}
}