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

13 lines
276 B
C#

using System.Collections;
using System.Collections.Generic;
namespace Project.B.Player
{
public interface IKeyMap
{
/// <summary>
/// 键位字典
/// </summary>
public IReadOnlyDictionary<string, object> KeyDictionary { get; }
}
}