| 12345678910111213141516171819202122232425 |
- //
- // serial.hpp
- // engine
- //
- // Created by Sam Jaffe on 5/20/19.
- // Copyright © 2019 Sam Jaffe. All rights reserved.
- //
- #pragma once
- #include <json/forwards.h>
- #include "game/math/math_fwd.hpp"
- template <typename> class flyweight;
- namespace graphics {
- struct object;
- }
- namespace engine {
- math::vec2 to_vec2(Json::Value const & json);
- math::vec2 to_vec2(Json::Value const & json, math::vec2 const & backup);
- graphics::object to_object(Json::Value const & json);
- }
|