mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-09 06:18:05 -05:00
14 lines
329 B
C++
14 lines
329 B
C++
#include "AssetLoaderComWorld.h"
|
|
|
|
#include "Game/T6/T6.h"
|
|
#include "ObjLoading.h"
|
|
|
|
using namespace T6;
|
|
|
|
void* AssetLoaderComWorld::CreateEmptyAsset(const std::string& assetName, MemoryManager* memory)
|
|
{
|
|
auto* asset = memory->Alloc<AssetComWorld::Type>();
|
|
asset->name = memory->Dup(assetName.c_str());
|
|
return asset;
|
|
}
|