mirror of
https://github.com/RocketRobz/SuperAllStarPhotoStudio.git
synced 2025-06-18 17:15:35 -04:00
17 lines
354 B
C++
17 lines
354 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:
|
|
#ifdef NDS
|
|
bool graphicLoaded = false;
|
|
#endif
|
|
const char* presentedText = "Presented in";
|
|
};
|
|
|
|
#endif |