2022-08-11 03:37:40 +03:00

14 lines
262 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
public interface IBindingHolder<T> where T : IBinding
{
public Dictionary<ECommand, T> InputBindings { get; }
public void Init();
}