| 342 | } |
| 343 | |
| 344 | static void callObjectUnload(const ObjectType type, Object& obj) |
| 345 | { |
| 346 | return visitObject(type, obj, [](auto&& obj) { |
| 347 | return obj->unload(); |
| 348 | }); |
| 349 | } |
| 350 | |
| 351 | static void callObjectLoad(const LoadedObjectHandle& handle, Object& obj, std::span<const std::byte> data, DependentObjects* dependencies = nullptr) |
| 352 | { |
no test coverage detected