mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-16 01:37:57 -05:00
feat: add loader for creating empty assets for all remaining iw5 asset types
This commit is contained in:
13
src/ObjLoading/Game/IW5/AssetLoaders/AssetLoaderClipMap.h
Normal file
13
src/ObjLoading/Game/IW5/AssetLoaders/AssetLoaderClipMap.h
Normal file
@ -0,0 +1,13 @@
|
||||
#pragma once
|
||||
|
||||
#include "AssetLoading/BasicAssetLoader.h"
|
||||
#include "Game/IW5/IW5.h"
|
||||
#include "SearchPath/ISearchPath.h"
|
||||
|
||||
namespace IW5
|
||||
{
|
||||
class AssetLoaderClipMap : public BasicAssetLoader<ASSET_TYPE_CLIPMAP, clipMap_t>
|
||||
{
|
||||
_NODISCARD void* CreateEmptyAsset(const std::string& assetName, MemoryManager* memory) override;
|
||||
};
|
||||
} // namespace IW5
|
Reference in New Issue
Block a user