mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-12-25 01:28:54 -05:00
10 lines
321 B
C++
10 lines
321 B
C++
|
#include "BackgroundExporter.h"
|
||
|
#include "../ZAPD/ZFile.h"
|
||
|
|
||
|
void OTRExporter_Background::Save(ZResource* res, const fs::path& outPath, BinaryWriter* writer)
|
||
|
{
|
||
|
ZBackground* bg = (ZBackground*)res;
|
||
|
|
||
|
auto data = bg->parent->GetRawData();
|
||
|
writer->Write((char*)data.data() + bg->GetRawDataIndex(), bg->GetRawDataSize());
|
||
|
}
|