17 lines
307 B
C++
17 lines
307 B
C++
/*
|
|
* Copyright 2016 - 2022 Gary Talent (gary@drinkingtea.net). All rights reserved.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <nostalgia/studio/studio.hpp>
|
|
|
|
namespace nostalgia::core {
|
|
|
|
class Module: public studio::Module {
|
|
public:
|
|
ox::Vector<studio::EditorMaker> editors(core::Context *ctx) noexcept override;
|
|
};
|
|
|
|
}
|