13 lines
276 B
C#
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; }
|
||
|
}
|
||
|
}
|