You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
projet-tut/Pontu/include/engine/ButtonActions.h

29 lines
621 B

#ifndef BUTTON_ACTION_INCLUDED
#define BUTTON_ACTION_INCLUDED
#include "engine/Button.h"
void action_none(P_Button* caller);
void action_print(P_Button* caller);
/**
* @brief Button handle which set a generalState to GS_MainMenu
* @param caller The button clicked
*/
void action_setStateToMainMenu(P_Button* caller);
/**
* @brief Button handle wich mute the sound
* @param caller The button clicked
*/
void action_muteSound(P_Button* caller);
/**
* @brief Button handle which show Settings
* @param caller The button clicked
*/
void action_showSettings(P_Button* caller);
#endif //BUTTON_ACTION_INCLUDED