SuperAllStarPhotoStudio/include/screens/exiting.hpp
StackZ 24b818c2b1 Add Screen classes for SavvyManager. (#6)
* Add Screen classes for SavvyManager.

* This should fix the character change.
2020-05-27 03:06:52 -06:00

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