2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2026-01-24 17:03:05 +00:00

refactor: update ZoneLoading classes codestyle

This commit is contained in:
Jan
2025-05-02 17:43:34 +01:00
parent 446c38d8ee
commit 4ce82ad63c
24 changed files with 102 additions and 87 deletions

View File

@@ -8,7 +8,12 @@ class ZoneLoader;
class ILoadingStep
{
public:
ILoadingStep() = default;
virtual ~ILoadingStep() = default;
ILoadingStep(const ILoadingStep& other) = default;
ILoadingStep(ILoadingStep&& other) noexcept = default;
ILoadingStep& operator=(const ILoadingStep& other) = default;
ILoadingStep& operator=(ILoadingStep&& other) noexcept = default;
virtual void PerformStep(ZoneLoader* zoneLoader, ILoadingStream* stream) = 0;
};