SavvyManager/source/screens/exiting.cpp
RocketRobz 0c3881cf6b WIP SS3 to SS4 character conversion
ALSO:
* Scroll through character list by holding D-Pad
* Derp fix
2021-09-04 02:49:02 -06:00

13 lines
430 B
C++

#include "exiting.hpp"
#include "screenvars.h"
void Exiting::Draw(void) const {
Gui::ScreenDraw(Top);
Gui::Draw_Rect(0, 0, 400, 240, C2D_Color32(fadecolor, fadecolor, fadecolor, 255)); // Fade in/out effect
Gui::ScreenDraw(Bottom);
Gui::Draw_Rect(0, 0, 320, 240, C2D_Color32(fadecolor, fadecolor, fadecolor, 255)); // Fade in/out effect
}
void Exiting::Logic(u32 hDown, u32 hDownRepeat, u32 hHeld, touchPosition touch) {
}