Axiom.Input.InputReader.OnKeyDown C# (CSharp) 메소드

OnKeyDown() 보호된 메소드

Triggers the KeyDown event.
protected OnKeyDown ( KeyEventArgs e ) : void
e KeyEventArgs Event arguments.
리턴 void
		protected void OnKeyDown( KeyEventArgs e )
		{
			if ( KeyDown != null )
			{
				KeyDown( this, e );
			}
		}