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