Control settings, more server settings, selecting character face

This commit is contained in:
Regalis
2015-10-28 19:07:17 +02:00
parent 9ed2963cd9
commit 948285f6ab
46 changed files with 789 additions and 325 deletions

View File

@@ -169,8 +169,7 @@ namespace EventInput
public static void OnCharEntered(char character)
{
if (CharEntered != null)
CharEntered(null, new CharacterEventArgs(character, 0));
if (CharEntered != null) CharEntered(null, new CharacterEventArgs(character, 0));
}
static IntPtr HookProc(IntPtr hWnd, uint msg, IntPtr wParam, IntPtr lParam)
@@ -186,6 +185,7 @@ namespace EventInput
case WM_KEYDOWN:
if (KeyDown != null)
KeyDown(null, new KeyEventArgs((Keys)wParam));
break;
case WM_KEYUP: