Add IW4 asset loader classes for all asset types that did not have one yet

This commit is contained in:
Jan
2022-01-02 01:07:09 +01:00
parent 98d62039eb
commit 57f37ec0ea
61 changed files with 1015 additions and 35 deletions

View File

@ -0,0 +1,14 @@
#pragma once
#include "Game/IW4/IW4.h"
#include "AssetLoading/BasicAssetLoader.h"
#include "SearchPath/ISearchPath.h"
namespace IW4
{
class AssetLoaderPixelShader final : public BasicAssetLoader<ASSET_TYPE_PIXELSHADER, MaterialPixelShader>
{
public:
_NODISCARD void* CreateEmptyAsset(const std::string& assetName, MemoryManager* memory) override;
};
}