This commit is contained in:
CortexCore
2025-02-24 23:02:49 +08:00
parent 9775bdd099
commit b07ae4fea7
82 changed files with 1021 additions and 386 deletions

30
Src/UX/UXDefine.cs Normal file
View File

@@ -0,0 +1,30 @@
using System.Collections;
using System.Collections.Generic;
using BITKit;
using BITKit.UX;
using Microsoft.Extensions.Logging;
using Net.Project.B.World;
namespace Net.Project.B.UX
{
public interface IUXHud:IUXPanel{}
public interface IUXInitialize:IUXPanel,ILogger<IUXInitialize> {}
public interface IUXBuyStation:IUXPanel{}
public interface IUXControlMode:IUXPanel{}
public interface IUXCosmetics:IUXPanel{}
public interface IUXDialogue:IUXPanel{}
public interface IUXInventory:IUXPanel{}
public interface IUXItemInspector : IUXPanel
{
public void Inspect(IRuntimeItem item);
}
public interface IUXLoadingMap:IUXPanel{}
public interface IUXLobby:IUXPanel{}
public interface IUXMapSelector:IUXPanel{}
public interface IUXSnapshotWindow:IUXPanel
{
void Open(SpotterScopeData scopeData);
}
public interface IUXSnapshot:IUXPanel{}
}