mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-21 16:45:44 +00:00
18 lines
353 B
C++
18 lines
353 B
C++
#pragma once
|
|
|
|
#include <memory>
|
|
|
|
#include "Writing/IZoneWriterFactory.h"
|
|
|
|
namespace IW4
|
|
{
|
|
class ZoneWriterFactory final : public IZoneWriterFactory
|
|
{
|
|
class Impl;
|
|
|
|
public:
|
|
_NODISCARD bool SupportsZone(Zone* zone) const override;
|
|
_NODISCARD std::unique_ptr<ZoneWriter> CreateWriter(Zone* zone) const override;
|
|
};
|
|
}
|