mirror of
https://github.com/RocketRobz/SavvyManager.git
synced 2025-06-18 17:15:34 -04:00
20 lines
563 B
C++
20 lines
563 B
C++
#ifndef _SAVVY_MANAGER_ROCKETROBZ_HPP
|
|
#define _SAVVY_MANAGER_ROCKETROBZ_HPP
|
|
|
|
#include "common.hpp"
|
|
|
|
class RocketRobz : public Screen {
|
|
public:
|
|
void Draw(void) const override;
|
|
void Logic(u32 hDown, u32 hDownRepeat, u32 hHeld, touchPosition touch) override;
|
|
private:
|
|
//bool musicPlayed = false;
|
|
const char* presentedText = "Presented in";
|
|
const char* gamesByText = "Original games by";
|
|
const char* gameYearText = "2008-2017";
|
|
const char* gameYearText2 = "2009-2017";
|
|
const char* gameYearTextKOR = "2010-2013";
|
|
const char* yearText = "2019-2024";
|
|
};
|
|
|
|
#endif |