2024-11-23 17:20:13 +08:00
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
namespace Project.B.Player
|
|
|
|
{
|
2025-02-24 23:02:49 +08:00
|
|
|
public interface IUXKeyMap<T> : IKeyMap
|
2024-11-23 17:20:13 +08:00
|
|
|
{
|
2025-02-24 23:02:49 +08:00
|
|
|
public T CancelKey { get; }
|
|
|
|
public T InventoryKey { get; }
|
|
|
|
public T ConfirmKey { get; }
|
2025-04-28 15:10:49 +08:00
|
|
|
public T ChatKey { get; }
|
2024-11-23 17:20:13 +08:00
|
|
|
}
|
|
|
|
}
|