mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-09 22:38:06 -05:00
13 lines
283 B
C++
13 lines
283 B
C++
#include "AssetDumperVertexDecl.h"
|
|
|
|
using namespace IW4;
|
|
|
|
bool AssetDumperVertexDecl::ShouldDump(XAssetInfo<MaterialVertexDeclaration>* asset)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
void AssetDumperVertexDecl::DumpAsset(AssetDumpingContext& context, XAssetInfo<MaterialVertexDeclaration>* asset)
|
|
{
|
|
}
|