mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-19 15:52:53 +00:00
14 lines
320 B
C++
14 lines
320 B
C++
#include "AssetLoaderXAnim.h"
|
|
|
|
#include "Game/T6/T6.h"
|
|
#include "ObjLoading.h"
|
|
|
|
using namespace T6;
|
|
|
|
void* AssetLoaderXAnim::CreateEmptyAsset(const std::string& assetName, MemoryManager* memory)
|
|
{
|
|
auto* asset = memory->Alloc<AssetXAnim::Type>();
|
|
asset->name = memory->Dup(assetName.c_str());
|
|
return asset;
|
|
}
|