// Copyright (c) 2023 Dominic Masters // // This software is released under the MIT License. // https://opensource.org/licenses/MIT #pragma once #include "game/Game.hpp" #include "scene/Scene.hpp" #include "component/display/Camera.hpp" namespace Dawn { struct RenderPassContext { std::shared_ptr game; std::shared_ptr scene; std::shared_ptr camera; std::shared_ptr renderTarget; }; }