mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-22 17:15:46 +00:00
11 lines
198 B
C++
11 lines
198 B
C++
#include "StreamProcessor.h"
|
|
|
|
StreamProcessor::StreamProcessor()
|
|
{
|
|
m_base_stream = nullptr;
|
|
}
|
|
|
|
void StreamProcessor::SetBaseStream(ILoadingStream* baseStream)
|
|
{
|
|
m_base_stream = baseStream;
|
|
} |