19 lines
429 B
C++
19 lines
429 B
C++
/*
|
|
* Copyright 2016 - 2023 Gary Talent (gary@drinkingtea.net). All rights reserved.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <turbine/turbine.hpp>
|
|
#include <studio/studio.hpp>
|
|
|
|
namespace nostalgia::scene {
|
|
|
|
class StudioModule: public studio::Module {
|
|
public:
|
|
ox::Vector<studio::EditorMaker> editors(turbine::Context *ctx) noexcept override;
|
|
ox::Vector<ox::UPtr<studio::ItemMaker>> itemMakers(turbine::Context*) noexcept override;
|
|
};
|
|
|
|
}
|