Files
Net.Project.B/Src/PlayerSettings/ICarKeyMap.cs

11 lines
237 B
C#
Raw Normal View History

2025-03-03 18:43:55 +08:00
using System.Collections.Generic;
namespace Project.B.Player
{
public interface ICarKeyMap<T>:IKeyMap
{
public T VerticalKey { get; }
public T HorizontalKey { get; }
public T HandBrakeKey { get; }
}
}