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

13 lines
276 B
C#
Raw Normal View History

2024-11-23 17:20:13 +08:00
using System.Collections;
using System.Collections.Generic;
namespace Project.B.Player
{
public interface IKeyMap
{
/// <summary>
/// 键位字典
/// </summary>
public IReadOnlyDictionary<string, object> KeyDictionary { get; }
}
}