Files
SDLPongCPP/.svn/pristine/59/59868a496a3a4645e3985825708ffcd678c81e93.svn-base
T
2018-06-25 21:48:45 -04:00

32 lines
698 B
Plaintext

#ifndef _CMENUDOWN_HPP_
#define _CMENUDOWN_HPP_
/*** TrooperEngine DLL Header Files ***/
#include "TrooperEngine.hpp"
/*** Custom Header Files ***/
#include "../cMainMenu.hpp"
namespace Input {
class cMenuDown : public InputEngine::cKey
{
public:
cMenuDown( SDL_Keycode key, MainMenu::cMainMenu** menu );
//cMenuUp( const cMenuDown& copy );
~cMenuDown();
///Funtions
/* Call if the key is pressed */
void KeyPress();
/* Call if the key is up */
void KeyUP();
/* Call if the key is down */
void KeyDown();
private:
private:
MainMenu::cMainMenu** mpp_menu;
};/// END CLASS DEFINITION cMenuDown
}/// END NAMESPACE DEFINITION Input
#endif/// END IFNDEF _CMENUDOWN_HPP_