mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-26 14:21:49 +00:00
13 lines
308 B
C++
13 lines
308 B
C++
#include "AssetDumperRawFile.h"
|
|
|
|
using namespace T6;
|
|
|
|
std::string AssetDumperRawFile::GetFileNameForAsset(Zone* zone, RawFile* asset)
|
|
{
|
|
return std::string(asset->name);
|
|
}
|
|
|
|
void AssetDumperRawFile::DumpAsset(Zone* zone, RawFile* asset, FileAPI::File* out)
|
|
{
|
|
out->Write(asset->buffer, 1, asset->len);
|
|
} |