Exemplo n.º 1
0
 private static void OnKeyboardKey(int key, char keyChar, KeyboardKeyState state)
 {
     try
     {
         KeyboardKey?.Invoke(key, keyChar, state);
     }
     catch (Exception ex)
     {
         Trace.WriteLine("Unhandled Exception in InternalOnPlayerChat!");
         Trace.WriteLine(ex.ToString());
     }
 }