11 lines
237 B
C#
11 lines
237 B
C#
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; }
|
|
}
|
|
} |