2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-06-26 22:31:50 +00:00

Add skeleton for IW4 writing

This commit is contained in:
Jan
2021-03-16 12:52:26 +01:00
parent 4feea62280
commit 03775944ce
4 changed files with 347 additions and 0 deletions

View File

@ -1,10 +1,15 @@
#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;