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:
@@ -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;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user