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

@ -10,11 +10,11 @@ ContentLoaderBase::ContentLoaderBase(Zone& zone)
{
}
ContentLoaderBase::ContentLoaderBase(Zone& zone, IZoneInputStream* stream)
ContentLoaderBase::ContentLoaderBase(Zone& zone, ZoneInputStream& stream)
: varXString(nullptr),
m_zone(zone),
m_memory(zone.Memory()),
m_stream(stream)
m_stream(&stream)
{
}