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

View File

@@ -3,10 +3,10 @@ using System.Collections.Generic;
namespace Project.B.Player
{
public interface IUXKeyMap : IKeyMap
public interface IUXKeyMap<T> : IKeyMap
{
public string CancelKey { get; set; }
public string InventoryKey { get; set; }
public string ConfirmKey { get; set; }
public T CancelKey { get; }
public T InventoryKey { get; }
public T ConfirmKey { get; }
}
}