chore: parse includes and assetlists while parsing zone definition

This commit is contained in:
Jan
2025-01-01 18:14:43 +01:00
parent 9852f52a15
commit aa212e0958
74 changed files with 530 additions and 437 deletions
+17
View File
@@ -0,0 +1,17 @@
#include "ISearchPath.h"
bool SearchPathOpenFile::IsOpen() const
{
return m_stream != nullptr;
}
SearchPathOpenFile::SearchPathOpenFile()
: m_length(0)
{
}
SearchPathOpenFile::SearchPathOpenFile(std::unique_ptr<std::istream> stream, const int64_t length)
: m_stream(std::move(stream)),
m_length(length)
{
}