14 lines
No EOL
226 B
C++
14 lines
No EOL
226 B
C++
#pragma once
|
|
#include "viewer.h"
|
|
#include "textengine.h"
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
class SettingsViewer : public Viewer {
|
|
public:
|
|
void Init();
|
|
void Cleanup();
|
|
|
|
bool Update(u32 key);
|
|
void Draw(TextEngine* t);
|
|
}; |