Add Settings Stuff. :P

This commit is contained in:
VoltZ
2019-11-02 04:32:23 +01:00
committed by GitHub
parent 44c31c46d5
commit 7ee50d5418
16 changed files with 907 additions and 39 deletions
+4 -1
View File
@@ -31,15 +31,18 @@
#include "utils/structs.hpp"
#include <vector>
class MainMenu : public Screen
{
public:
void Draw(void) const override;
void Logic(u32 hDown, u32 hHeld, touchPosition touch) override;
private:
int Selection = 0;
std::vector<Structs::ButtonPos> mainButtons = {
{90, 40, 140, 35, -1}, // ScriptList.
{90, 160, 140, 35, -1}, // Settings?
{90, 100, 140, 35, -1}, // Language.
{90, 160, 140, 35, -1}, // Colors.
};
};