Files
Renderive/web_server/app/render_2D/Gallery_Scene2D.h
T
2026-08-14 19:03:39 +08:00

9 lines
322 B
C++

#pragma once
#include "../common/Gallery_Scene_Interface.h"
#include <cstdint>
#include <memory>
#include <string>
namespace renderive::web {
[[nodiscard]] std::unique_ptr<Gallery_Scene_Interface> make_gallery_scene_2d(std::uint64_t session_id, std::string case_id, Gallery_Frame_Mode mode, bool automatic_low_latency);
}