2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2026-04-21 10:58:44 +00:00

chore: remove old iw4 techset compiler

This commit is contained in:
Jan Laupetin
2026-03-24 20:38:23 +01:00
parent 80dc487d5a
commit b798fbb482
2 changed files with 0 additions and 1408 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -1,26 +0,0 @@
#pragma once
#include "Asset/IAssetCreator.h"
#include "Game/IW4/IW4.h"
#include "SearchPath/ISearchPath.h"
#include "Techset/CommonTechset.h"
#include "Techset/StateMap/StateMapDefinition.h"
#include "Utils/MemoryManager.h"
#include <memory>
#include <string>
namespace techset
{
class ICreatorIW4 : public AssetCreator<IW4::AssetTechniqueSet>
{
public:
ICreatorIW4() = default;
virtual ~ICreatorIW4() = default;
virtual CommonTechset* LoadTechsetDefinition(const std::string& assetName, AssetCreationContext& context, bool& failure) = 0;
virtual const state_map::StateMapDefinition* LoadStateMapDefinition(const std::string& stateMapName, AssetCreationContext& context) = 0;
};
std::unique_ptr<ICreatorIW4> CreateLoaderIW4(MemoryManager& memory, ISearchPath& searchPath);
} // namespace techset