// Copyright (c) 2024 Dominic Masters // // This software is released under the MIT License. // https://opensource.org/licenses/MIT #include "SceneLoadContext.hpp" using namespace Dawn; std::shared_ptr SceneLoadContext::getItem(const std::string &j) { auto it = items.find(j); if(it == items.end()) { auto parent = this->parent.lock(); assertNotNull(parent, "Couldn't find item."); return parent->getItem(j); } return it->second; }