summaryrefslogtreecommitdiff
path: root/Plugins/MonoGame.Extended/source/MonoGame.Extended.Input/InputListeners/InputListenerSettings.cs
blob: 468a30b88368e60a9382c7e9314b9d08838433ea (plain)
1
2
3
4
5
6
7
8
namespace MonoGame.Extended.Input.InputListeners
{
    public abstract class InputListenerSettings<T>
        where T : InputListener
    {
        public abstract T CreateListener();
    }
}