mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-12-12 21:26:08 +00:00
Match CConsoleOutputWindow, regswaps in constructor
Former-commit-id: 27bd20ff1d
This commit is contained in:
@@ -1,17 +1,29 @@
|
||||
#ifndef _CCONSOLEOUTPUTWINDOW
|
||||
#define _CCONSOLEOUTPUTWINDOW
|
||||
|
||||
#include "types.h"
|
||||
|
||||
#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 Draw() 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