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