2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-06-26 22:31:50 +00:00

Add loading of iw3 fastfiles

This commit is contained in:
Jan
2021-04-14 19:41:41 +02:00
parent 15c896862c
commit ecef868903
9 changed files with 361 additions and 10 deletions

View File

@ -0,0 +1,15 @@
#pragma once
#include "Loading/IZoneLoaderFactory.h"
#include <string>
namespace IW3
{
class ZoneLoaderFactory final : public IZoneLoaderFactory
{
class Impl;
public:
ZoneLoader* CreateLoaderForHeader(ZoneHeader& header, std::string& fileName) override;
};
}