Exemplo n.º 1
0
 void OnKeyPressed(DataEventArgs <KeyCode> e)
 {
     KeyPressed?.Invoke(this, e);
 }
Exemplo n.º 2
0
        protected virtual void OnKeyPressed(KeyPressedHandledEventArgs e)
        {
            KeyPressedEventHandler handler = KeyPressed;

            handler?.Invoke(this, e);
        }
Exemplo n.º 3
0
 void OnTerminate(DataEventArgs <KeyCode> e)
 {
     Terminate?.Invoke(this, e);
 }