Files
Net.Like.Xue.Tokyo/Packages-Local/Com.Project.B/PlayerSettings/ICarKeyMap.cs
2025-06-24 23:49:13 +08:00

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; }
}
}