// Copyright (c) 2024 Dominic Masters // // This software is released under the MIT License. // https://opensource.org/licenses/MIT #pragma once #include "JSONLoader.hpp" #include "scene/Scene.hpp" namespace Dawn { class LoaderForSceneitems; class LoaderForSceneItems : public AssetLoader, public std::enable_shared_from_this { protected: std::shared_ptr jsonLoader; /** * Loads the dependencies into the context for the data available in * the jsonLoader. */ void setupDependencies(); public: struct SceneComponentLoadContext ctx; LoaderForSceneItems( const std::shared_ptr assetManager, const std::string name ); ~LoaderForSceneItems(); }; }