예제 #1
0
 //*********************************************************************************************************************************************
 //
 // Method Name: BreakoutKeyUp
 //
 // Description:
 //  Call to handle operator key releases. Dependant on the state of the game, key presses will change functionality.
 //
 // Arguments:
 //  theSender - The object that sent the event arguments.
 //  theEventArguments - The events that occurred by the sender.
 //
 // Return:
 //  N/A
 //
 //*********************************************************************************************************************************************
 private void BreakoutKeyUp(Object theSender, KeyEventArgs theEventArguments)
 {
     mBreakoutGame.BreakoutKeyUp(theEventArguments);
 }