mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-13 00:08:26 -05:00
15 lines
291 B
C++
15 lines
291 B
C++
#pragma once
|
|
|
|
#include "Writing/IZoneWriterFactory.h"
|
|
|
|
#include <memory>
|
|
|
|
namespace T6
|
|
{
|
|
class ZoneWriterFactory final : public IZoneWriterFactory
|
|
{
|
|
public:
|
|
[[nodiscard]] std::unique_ptr<ZoneWriter> CreateWriter(const Zone& zone) const override;
|
|
};
|
|
} // namespace T6
|