This commit is contained in:
CortexCore
2025-03-09 13:38:32 +08:00
parent 787ae12bf8
commit 88f1ff1b04
14 changed files with 181 additions and 35 deletions

View File

@@ -1,3 +1,4 @@
using System;
using System.Collections;
using System.Collections.Generic;
using BITKit;
@@ -12,7 +13,11 @@ namespace Net.Project.B.UX
public interface IUXBuyStation:IUXPanel{}
public interface IUXControlMode:IUXPanel{}
public interface IUXCosmetics:IUXPanel{}
public interface IUXDialogue:IUXPanel{}
public interface IUXDialogue : IUXPanel
{
event Func<string, string> OnSubtitle;
}
public interface IUXInventory : IUXPanel
{