mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2026-01-24 08:53:04 +00:00
20 lines
528 B
C++
20 lines
528 B
C++
#pragma once
|
|
|
|
#include "ILoadingStream.h"
|
|
#include "Loading/ZoneLoader.h"
|
|
|
|
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;
|
|
};
|