mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-22 17:15:46 +00:00
12 lines
242 B
C++
12 lines
242 B
C++
#pragma once
|
|
|
|
#include "Zone/Zone.h"
|
|
#include "Zone/Stream/IZoneInputStream.h"
|
|
|
|
class IContentLoadingEntryPoint
|
|
{
|
|
public:
|
|
virtual ~IContentLoadingEntryPoint() = default;
|
|
|
|
virtual void Load(Zone* zone, IZoneInputStream* stream) = 0;
|
|
}; |