mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-14 00:38:15 -05:00
13 lines
243 B
C++
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;
|
|
};
|