/* * Copyright 2016 - 2023 Gary Talent (gary@drinkingtea.net). All rights reserved. */ #include "sceneeditor-imgui.hpp" #include "module.hpp" namespace nostalgia::scene { ox::Vector StudioModule::editors(turbine::Context *ctx) noexcept { return { { {"nscn"}, [ctx](ox::CRStringView path) -> ox::Result { return ox::makeCatch(ctx, path); } }, }; } ox::Vector> StudioModule::itemMakers(turbine::Context*) noexcept { ox::Vector> out; return out; } }