2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2026-05-01 16:09:36 +00:00

feat: add shader compiler for IW4

This commit is contained in:
Jan Laupetin
2026-03-24 21:22:33 +01:00
parent 027b49271d
commit 3954c5e923
11 changed files with 358 additions and 1 deletions
@@ -0,0 +1,11 @@
#pragma once
#include "Asset/IAssetCreator.h"
#include "Utils/MemoryManager.h"
#include <memory>
namespace techset
{
std::unique_ptr<IAssetCreator> CreateVertexShaderCompilerIW4(MemoryManager& memory, ISearchPath& searchPath);
}