Load T5 fastfiles

This commit is contained in:
Jan
2021-05-12 21:47:34 +02:00
parent e3a3d012e6
commit bb3e7d9e88
18 changed files with 711 additions and 6 deletions

View File

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