This commit is contained in:
CortexCore
2025-04-14 15:39:24 +08:00
parent 5fceb6f885
commit 3f9d9f19ce
50 changed files with 683 additions and 41 deletions

View File

@@ -4,6 +4,7 @@ using System.Collections.Generic;
using BITKit;
using BITKit.UX;
using Microsoft.Extensions.Logging;
using Net.Project.B.Buff;
using Net.Project.B.World;
namespace Net.Project.B.UX
@@ -39,11 +40,17 @@ namespace Net.Project.B.UX
public interface IUXMapSelector:IUXPanel{}
public interface IUXSnapshotWindow:IUXPanel
{
void Open(SpotterScopeData scopeData);
void Open(SnapshotData scopeData);
}
public interface IUXSnapshot:IUXPanel{}
public interface IUXInventorySwap:IUXPanel{}
public interface IUXMap:IUXPanel{}
public interface IUXIndicator:IUXPanel{}
public interface IUXMark:IUXPanel{}
public interface IUXQuest:IUXPanel{}
public interface IUXSurvival : IUXPanel
{
public IReadOnlyCollection<IBuff> SurvivalBuffs { get; set; }
}
}