metaforce/Runtime/GuiSys/CConsoleOutputWindow.hpp

20 lines
378 B
C++
Raw Normal View History

2016-04-13 06:07:23 +00:00
#ifndef __URDE_CCONSOLEOUTPUTWINDOW_HPP__
#define __URDE_CCONSOLEOUTPUTWINDOW_HPP__
2015-08-18 05:54:43 +00:00
2016-09-14 05:54:09 +00:00
#include "CIOWin.hpp"
2016-03-04 23:04:53 +00:00
namespace urde
2015-08-18 05:54:43 +00:00
{
2016-09-14 05:54:09 +00:00
class CConsoleOutputWindow : public CIOWin
2015-08-18 05:54:43 +00:00
{
2016-09-14 05:54:09 +00:00
public:
CConsoleOutputWindow(int, float, float);
EMessageReturn OnMessage(const CArchitectureMessage&, CArchitectureQueue&);
void Draw() const;
2015-08-18 05:54:43 +00:00
};
}
2016-04-13 06:07:23 +00:00
#endif // __URDE_CCONSOLEOUTPUTWINDOW_HPP__