mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2026-01-24 17:03:05 +00:00
Rename ZoneLoader and ZoneWriter components to ZoneLoading and ZoneWriting to make a difference between the executive class and the component class
This commit is contained in:
14
src/ZoneLoading/Loading/ILoadingStep.h
Normal file
14
src/ZoneLoading/Loading/ILoadingStep.h
Normal file
@@ -0,0 +1,14 @@
|
||||
#pragma once
|
||||
|
||||
#include "Loading/ZoneLoader.h"
|
||||
#include "ILoadingStream.h"
|
||||
|
||||
class ZoneLoader;
|
||||
|
||||
class ILoadingStep
|
||||
{
|
||||
public:
|
||||
virtual ~ILoadingStep() = default;
|
||||
|
||||
virtual void PerformStep(ZoneLoader* zoneLoader, ILoadingStream* stream) = 0;
|
||||
};
|
||||
Reference in New Issue
Block a user