Files
Net.Like.Xue.Tokyo/Packages-Local/Com.Project.B/PlayerSettings/IUXKeyMap.cs

14 lines
295 B
C#
Raw Normal View History

2025-06-24 23:49:13 +08:00
using System.Collections;
using System.Collections.Generic;
namespace Project.B.Player
{
public interface IUXKeyMap<T> : IKeyMap
{
public T CancelKey { get; }
public T InventoryKey { get; }
public T ConfirmKey { get; }
public T ChatKey { get; }
}
}