mirror of
https://github.com/RocketRobz/SuperAllStarPhotoStudio.git
synced 2025-06-18 17:15:35 -04:00
12 lines
242 B
C++
12 lines
242 B
C++
#ifndef _SAVVY_MANAGER_EXITING_HPP
|
|
#define _SAVVY_MANAGER_EXITING_HPP
|
|
|
|
#include "common.hpp"
|
|
|
|
class Exiting : public Screen {
|
|
public:
|
|
void Draw(void) const override;
|
|
void Logic(u32 hDown, u32 hHeld, touchPosition touch) override;
|
|
};
|
|
|
|
#endif |