mirror of
https://github.com/PrimeDecomp/echoes.git
synced 2026-07-12 18:18:57 -07:00
More progress for CMain
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
#ifndef _CCONSOLEOUTPUTWINDOW
|
||||
#define _CCONSOLEOUTPUTWINDOW
|
||||
|
||||
#include "MetroidPrime/CIOWin.hpp"
|
||||
|
||||
#include "Kyoto/Text/CFont.hpp"
|
||||
|
||||
#include <rstl/vector.hpp>
|
||||
|
||||
class CConsoleOutputWindow : public CIOWin {
|
||||
static CConsoleOutputWindow* mInstance;
|
||||
public:
|
||||
CConsoleOutputWindow(int, float, float);
|
||||
|
||||
~CConsoleOutputWindow() override;
|
||||
EMessageReturn OnMessage(const CArchitectureMessage&, CArchitectureQueue&) override;
|
||||
void Update(float);
|
||||
void Draw() const;
|
||||
private:
|
||||
CFont mFont;
|
||||
float mUnk;
|
||||
rstl::vector<rstl::string> mText;
|
||||
rstl::vector<float> mUnkFloats;
|
||||
int x40_;
|
||||
int x44_;
|
||||
int x48_;
|
||||
};
|
||||
|
||||
#endif // _CCONSOLEOUTPUTWINDOW
|
||||
Reference in New Issue
Block a user