refactor: merge ZoneInputStream interface with only implementation

This commit is contained in:
Jan
2025-05-02 18:35:44 +01:00
parent 4ce82ad63c
commit eb16dfcd00
49 changed files with 342 additions and 384 deletions

View File

@ -1,6 +1,6 @@
#pragma once
#include "Zone/Stream/IZoneInputStream.h"
#include "Zone/Stream/ZoneInputStream.h"
class IContentLoadingEntryPoint
{
@ -12,5 +12,5 @@ public:
IContentLoadingEntryPoint& operator=(const IContentLoadingEntryPoint& other) = default;
IContentLoadingEntryPoint& operator=(IContentLoadingEntryPoint&& other) noexcept = default;
virtual void Load(IZoneInputStream* stream) = 0;
virtual void Load(ZoneInputStream& stream) = 0;
};