Files
OpenAssetTools/src/ZoneLoading/Loading/IContentLoadingEntryPoint.h
2023-11-19 21:07:21 +00:00

13 lines
243 B
C++

#pragma once
#include "Zone/Stream/IZoneInputStream.h"
#include "Zone/Zone.h"
class IContentLoadingEntryPoint
{
public:
virtual ~IContentLoadingEntryPoint() = default;
virtual void Load(Zone* zone, IZoneInputStream* stream) = 0;
};