| 123456789101112131415161718192021222324252627 |
- //
- // serial.hpp
- // danmaku
- //
- // Created by Sam Jaffe on 5/27/19.
- // Copyright © 2019 Sam Jaffe. All rights reserved.
- //
- #pragma once
- #include <memory>
- #include <json/forwards.h>
- #include "game/engine/serial.hpp"
- namespace danmaku {
- class actor;
- }
- namespace graphics {
- class manager;
- }
- namespace danmaku {
- std::unique_ptr<actor> to_actor(Json::Value const & json,
- graphics::manager const & mgr);
- }
|