Symbol fixes, headers & main progress

Former-commit-id: 6944a14e89
This commit is contained in:
2022-10-01 02:19:09 -04:00
parent f1e383728e
commit adb54a9892
48 changed files with 458 additions and 200 deletions

View File

@@ -0,0 +1,17 @@
#ifndef _CCONSOLEOUTPUTWINDOW_HPP
#define _CCONSOLEOUTPUTWINDOW_HPP
#include "types.h"
#include "MetroidPrime/CIOWin.hpp"
class CConsoleOutputWindow : public CIOWin {
public:
CConsoleOutputWindow(int, f32, f32);
~CConsoleOutputWindow() override;
EMessageReturn OnMessage(const CArchitectureMessage&, CArchitectureQueue&) override;
void Draw() override;
};
#endif