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#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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,
}
}