You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
525 B
19 lines
525 B
|
6 years ago
|
// This code is distributed under MIT license.
|
||
|
|
// Copyright (c) 2015 George Mamaladze
|
||
|
|
// See license.txt or http://opensource.org/licenses/mit-license.php
|
||
|
|
|
||
|
|
namespace Gma.System.MouseKeyHook.Implementation
|
||
|
|
{
|
||
|
|
internal class GlobalEventFacade : EventFacade
|
||
|
|
{
|
||
|
|
protected override MouseListener CreateMouseListener()
|
||
|
|
{
|
||
|
|
return new GlobalMouseListener();
|
||
|
|
}
|
||
|
|
|
||
|
|
protected override KeyListener CreateKeyListener()
|
||
|
|
{
|
||
|
|
return new GlobalKeyListener();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|