1
Fork 0
This repository has been archived on 2025-04-09. You can view files and clone it, but cannot push or open issues or pull requests.
ctrorganizer/source/settingsviewer.cpp

22 lines
419 B
C++
Raw Permalink Normal View History

2024-01-03 15:59:26 -05:00
#include "settingsviewer.h"
void SettingsViewer::Draw(TextEngine* t) {
t->renderText(8.0f, 8.0f, 0.5f, 0.5f, false, std::string("Options").c_str());
t->renderText(8.0f, 18.0f, 0.5f, 0.5f, false, std::string("There is nothing here...").c_str());
}
bool SettingsViewer::Update(u32 key) {
//Exit viewer
if(key & KEY_B) {
return false;
}
}
void SettingsViewer::Init() {
}
void SettingsViewer::Cleanup() {
}