This commit is contained in:
CortexCore
2025-06-12 16:08:12 +08:00
parent 4c2534a6e9
commit a772331918
10 changed files with 108 additions and 2 deletions

View File

@@ -9,7 +9,10 @@ using Net.Project.B.World;
namespace Net.Project.B.UX
{
public interface IUXHud:IUXPanel{}
public interface IUXHud : IUXPanel
{
public ValidHandle InCinematicMode { get; }
}
public interface IUXInitialize:IUXPanel,ILogger<IUXInitialize> {}
public interface IUXBuyStation:IUXPanel{}
public interface IUXControlMode:IUXPanel{}
@@ -53,4 +56,5 @@ namespace Net.Project.B.UX
public IReadOnlyCollection<IBuff> SurvivalBuffs { get; set; }
}
public interface IUXChat:IUXPanel{}
public interface IUXLevelUp:IUXPanel{}
}