mirror of
https://github.com/RocketRobz/SuperAllStarPhotoStudio.git
synced 2025-06-18 17:15:35 -04:00
16 lines
397 B
C++
16 lines
397 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 hHeld, touchPosition touch) override;
|
|
private:
|
|
int text_width = 0;
|
|
const char* yeartext = "2019-2020 RocketRobz";
|
|
//const char* yeartext2 = "Games 2008-2017 Nintendo & syn Sophia";
|
|
};
|
|
|
|
#endif |