This commit is contained in:
CortexCore
2025-03-03 18:43:55 +08:00
parent 54f40090c9
commit 4402ae533b
32 changed files with 337 additions and 73 deletions

View File

@@ -13,7 +13,16 @@ namespace Net.Project.B.UX
public interface IUXControlMode:IUXPanel{}
public interface IUXCosmetics:IUXPanel{}
public interface IUXDialogue:IUXPanel{}
public interface IUXInventory:IUXPanel{}
public interface IUXInventory : IUXPanel
{
public ItemQuality AutoInspect { get; set; }
}
public interface IUXInventoryPrompt : IUXPanel
{
}
public interface IUXItemInspector : IUXPanel
{
@@ -27,4 +36,6 @@ namespace Net.Project.B.UX
void Open(SpotterScopeData scopeData);
}
public interface IUXSnapshot:IUXPanel{}
public interface IUXInventorySwap:IUXPanel{}
public interface IUXMap:IUXPanel{}
}