| 254 | } |
| 255 | |
| 256 | void Prefab::CheckboxUpdated(Checkbox* checkbox, double time) |
| 257 | { |
| 258 | if (checkbox == mEnabledCheckbox) |
| 259 | { |
| 260 | for (auto& module : mModuleContainer.GetModules()) |
| 261 | { |
| 262 | module->SetEnabled(mEnabled); |
| 263 | } |
| 264 | } |
| 265 | } |
| 266 | |
| 267 | void Prefab::SavePrefab(std::string savePath) |
| 268 | { |
nothing calls this directly
no test coverage detected