[nostalgia/studio] Add missing Editor header to studioapp.hpp

This commit is contained in:
Gary Talent 2022-02-21 02:25:15 -06:00
parent 3dd60965c4
commit d14bab7abd

View File

@ -8,6 +8,7 @@
#include <ox/std/memory.hpp>
#include <ox/std/string.hpp>
#include "lib/editor.hpp"
#include "lib/module.hpp"
#include "lib/project.hpp"
#include "lib/task.hpp"
@ -37,6 +38,10 @@ class StudioUI: public ox::SignalHandler {
void update() noexcept;
constexpr auto project() noexcept {
return m_project.get();
}
protected:
void draw() noexcept;
@ -62,4 +67,4 @@ class StudioUI: public ox::SignalHandler {
ox::Error closeFile(const ox::String &path) noexcept;
};
}
}