2
0
Fork 0
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
813 B
C#

2 years ago
namespace Game
{
/// <summary>
/// UI页面枚举同时定义显示层级
/// </summary>
public enum EuiPage
{
Default,
Hud,
HeadBar,
GmPanel,
Loading,
PlayerTouch,
SkillGm,
Bag,
Drama,
Die,
BlessChoose,
Combo,
Weapon,
BlessList,
}
/// <summary>
/// UI组件枚举需要池化的非item组件放在这里item组件使用FGUI自带的池子
/// </summary>
public enum EuiComponent
{
Headbar,
}
public enum EuiPackage
{
Common,
Battle,
}
public enum EuiPageType
{
FullScreen,
FullScreenResident,
Component,
Brother,
}
}