fix spacing

This commit is contained in:
Chris Cromer 2022-08-26 13:48:59 -04:00
parent 7083f680ee
commit ff600cd761
Signed by: cromer
GPG Key ID: FA91071797BEEEC2

View File

@ -8,51 +8,49 @@
namespace godot namespace godot
{ {
/** /**
* @brief This class controls what happens when the Coin is in the collected . * @brief This class controls what happens when the Coin is in the collected .
* *
*/ */
class GameOverScreen : public Control class GameOverScreen : public Control
{ {
GODOT_CLASS(GameOverScreen, Control) GODOT_CLASS(GameOverScreen, Control)
private: private:
public:
/**
* @brief This method registers classes with Godot.
*
* @details This method registers methods, properties, and signals with the Godot engine.
*/
static void _register_methods();
public: /**
/** * @brief Construct a new GameOverScreen object.
* @brief This method registers classes with Godot. *
* */
* @details This method registers methods, properties, and signals with the Godot engine. GameOverScreen();
*/
static void _register_methods();
/** /**
* @brief Construct a new GameOverScreen object. * @brief Destroy the GameOverScreen object.
* *
*/ */
GameOverScreen(); ~GameOverScreen();
/** /**
* @brief Destroy the GameOverScreen object. * @brief Initialize the class from Godot.
* *
*/ * @details This method is called just once when the Godot engine connects to the instance of the class.
~GameOverScreen(); */
void _init();
/** /**
* @brief Initialize the class from Godot. * @brief Called when the collected of the coin is entered.
* *
* @details This method is called just once when the Godot engine connects to the instance of the class. */
*/ void _on_botonreiniciar_pressed();
void _init(); };
/**
* @brief Called when the collected of the coin is entered.
*
*/
void _on_botonreiniciar_pressed();
};
} }
#endif #endif