mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-17 02:07:58 -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/AssetLoaderFont.cpp
Normal file
17
src/ObjLoading/Game/IW4/AssetLoaders/AssetLoaderFont.cpp
Normal file
@ -0,0 +1,17 @@
|
||||
#include "AssetLoaderFont.h"
|
||||
|
||||
#include <cstring>
|
||||
|
||||
#include "ObjLoading.h"
|
||||
#include "Game/IW4/IW4.h"
|
||||
#include "Pool/GlobalAssetPool.h"
|
||||
|
||||
using namespace IW4;
|
||||
|
||||
void* AssetLoaderFont::CreateEmptyAsset(const std::string& assetName, MemoryManager* memory)
|
||||
{
|
||||
auto* font = memory->Create<Font_s>();
|
||||
memset(font, 0, sizeof(Font_s));
|
||||
font->fontName = memory->Dup(assetName.c_str());
|
||||
return font;
|
||||
}
|
Reference in New Issue
Block a user