Files
ox/src/nostalgia/core/studio/module.hpp
T
2022-04-02 16:47:48 -05:00

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;
};
}