mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-22 00:55:45 +00:00
17 lines
312 B
C++
17 lines
312 B
C++
#pragma once
|
|
|
|
#include "Loading/IZoneLoaderFactory.h"
|
|
|
|
#include <string>
|
|
|
|
namespace IW4
|
|
{
|
|
class ZoneLoaderFactory final : public IZoneLoaderFactory
|
|
{
|
|
class Impl;
|
|
|
|
public:
|
|
ZoneLoader* CreateLoaderForHeader(ZoneHeader& header, std::string& fileName) override;
|
|
};
|
|
} // namespace IW4
|