2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2026-01-25 17:33:04 +00:00

Rename ZoneLoader and ZoneWriter components to ZoneLoading and ZoneWriting to make a difference between the executive class and the component class

This commit is contained in:
Jan
2019-09-24 22:35:11 +02:00
parent 0d8432d4f7
commit 42af6df5d8
86 changed files with 22 additions and 13 deletions

View File

@@ -0,0 +1,11 @@
#include "StreamProcessor.h"
StreamProcessor::StreamProcessor()
{
m_base_stream = nullptr;
}
void StreamProcessor::SetBaseStream(ILoadingStream* baseStream)
{
m_base_stream = baseStream;
}