using System.Collections.Generic; namespace Project.B.Player { public interface ICarKeyMap:IKeyMap { public T VerticalKey { get; } public T HorizontalKey { get; } public T HandBrakeKey { get; } } }