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

13 lines
287 B
C#

using System.Collections;
using System.Collections.Generic;
namespace Project.B.Player
{
public interface IUXKeyMap : IKeyMap
{
public string CancelKey { get; set; }
public string InventoryKey { get; set; }
public string ConfirmKey { get; set; }
}
}