[nostalgia/scene] ACTUALLY add Scene Studio module

This commit is contained in:
2023-03-11 18:45:35 -06:00
parent 986ee3d7b0
commit 4a95a79926
9 changed files with 294 additions and 0 deletions
@@ -0,0 +1,15 @@
/*
* Copyright 2016 - 2023 Gary Talent (gary@drinkingtea.net). All rights reserved.
*/
#include "sceneeditor.hpp"
namespace nostalgia::scene {
SceneEditor::SceneEditor(core::Context *ctx, ox::CRStringView path) {
m_ctx = ctx;
oxRequireT(scn, foundation::readObj<SceneStatic>(m_ctx, path));
m_scene = *scn;
}
}