| 88 | } |
| 89 | |
| 90 | void xg::guide::GuideController::ImageObject(const nlohmann::json &config) { |
| 91 | if(!config.is_object()) |
| 92 | return; |
| 93 | auto image = xg::make_unique<xg::guide::Image>(config); |
| 94 | this->guides.push_back(std::move(image)); |
| 95 | } |
| 96 | |
| 97 | void xg::guide::GuideController::PointObject(const nlohmann::json &config) { |
| 98 | if(!config.is_object()) |