mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-13 16:28:31 -05:00
Add IW4 asset loader classes for all asset types that did not have one yet
This commit is contained in:
@ -0,0 +1,17 @@
|
||||
#include "AssetLoaderGameWorldMp.h"
|
||||
|
||||
#include <cstring>
|
||||
|
||||
#include "ObjLoading.h"
|
||||
#include "Game/IW4/IW4.h"
|
||||
#include "Pool/GlobalAssetPool.h"
|
||||
|
||||
using namespace IW4;
|
||||
|
||||
void* AssetLoaderGameWorldMp::CreateEmptyAsset(const std::string& assetName, MemoryManager* memory)
|
||||
{
|
||||
auto* gameWorld = memory->Create<GameWorldMp>();
|
||||
memset(gameWorld, 0, sizeof(GameWorldMp));
|
||||
gameWorld->name = memory->Dup(assetName.c_str());
|
||||
return gameWorld;
|
||||
}
|
Reference in New Issue
Block a user