Net.Project.B/Src/PlayerSettings/IUXKeyMap.cs

13 lines
261 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 ConfirmKey { get; }
}
}