add OutputWindow to display logs
This commit is contained in:
20
include/NazaraEditor/Editor/UI/OutputWindow.hpp
Normal file
20
include/NazaraEditor/Editor/UI/OutputWindow.hpp
Normal file
@@ -0,0 +1,20 @@
|
||||
#include <NazaraEditor/Core.hpp>
|
||||
|
||||
#include <Nazara/Core.hpp>
|
||||
#include <Nazara/Utility.hpp>
|
||||
|
||||
namespace NzEditor
|
||||
{
|
||||
class OutputWindow
|
||||
: public Nz::EditorWindow
|
||||
{
|
||||
public:
|
||||
OutputWindow(Nz::EditorBaseApplication* app);
|
||||
|
||||
virtual void OnEditorGUI() override;
|
||||
|
||||
protected:
|
||||
bool m_bScrollToBottom;
|
||||
bool m_bScrollToTop;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user