Files
Net.Project.B/Src/PlayerSettings/IUXKeyMap.cs
CortexCore 519c93d651 1
2025-08-03 02:28:22 +08:00

15 lines
328 B
C#

using System.Collections;
using System.Collections.Generic;
namespace Project.B.Player
{
public interface IUXKeyMap<T> : IKeyMap
{
public T CancelKey { get; }
public T InventoryKey { get; }
public T MapKey { get; }
public T ConfirmKey { get; }
public T ChatKey { get; }
}
}