mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-10 23:08:05 -05:00
15 lines
284 B
C++
15 lines
284 B
C++
#pragma once
|
|
|
|
#include "Writing/IZoneWriterFactory.h"
|
|
|
|
#include <memory>
|
|
|
|
namespace IW5
|
|
{
|
|
class ZoneWriterFactory final : public IZoneWriterFactory
|
|
{
|
|
public:
|
|
_NODISCARD std::unique_ptr<ZoneWriter> CreateWriter(Zone* zone) const override;
|
|
};
|
|
} // namespace IW5
|