| 74 | } |
| 75 | |
| 76 | void xg::guide::GuideController::LineObject(const nlohmann::json &config) { |
| 77 | if(!config.is_object()) |
| 78 | return; |
| 79 | auto line = xg::make_unique<xg::guide::Line>(config); |
| 80 | this->guides.push_back(std::move(line)); |
| 81 | } |
| 82 | |
| 83 | void xg::guide::GuideController::BackgroundObject(const nlohmann::json &config) { |
| 84 | if(!config.is_object()) |