| 232 | } |
| 233 | |
| 234 | void Interactor::interact() |
| 235 | { |
| 236 | if (config_.is_first_time_use()) { |
| 237 | interact_for_first_time_use(); |
| 238 | config_.save(user_path_); |
| 239 | } |
| 240 | |
| 241 | while (true) { |
| 242 | print_config(); |
| 243 | if (!interact_once()) { |
| 244 | break; |
| 245 | } |
| 246 | config_.save(user_path_); |
| 247 | } |
| 248 | } |
| 249 | |
| 250 | const MAA_PROJECT_INTERFACE_NS::InterfaceData::Controller* Interactor::find_current_controller() const |
| 251 | { |