mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-26 06:11:53 +00:00
18 lines
370 B
C++
18 lines
370 B
C++
#pragma once
|
|
|
|
#include "Writing/IZoneWriterFactory.h"
|
|
|
|
#include <memory>
|
|
|
|
namespace IW3
|
|
{
|
|
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;
|
|
};
|
|
} // namespace IW3
|