using System.Collections; using System.Collections.Generic; namespace Project.B.Player { public interface IKeyMap { /// /// 键位字典 /// public IReadOnlyDictionary KeyDictionary { get; } } }