mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-19 15:52:53 +00:00
14 lines
425 B
C++
14 lines
425 B
C++
#pragma once
|
|
|
|
#include "ContentLister/ZoneDefWriter.h"
|
|
|
|
namespace IW5
|
|
{
|
|
class ZoneDefWriter final : public AbstractZoneDefWriter
|
|
{
|
|
protected:
|
|
void WriteMetaData(ZoneDefinitionOutputStream& stream, const UnlinkerArgs& args, const Zone& zone) const override;
|
|
void WriteContent(ZoneDefinitionOutputStream& stream, const UnlinkerArgs& args, const Zone& zone) const override;
|
|
};
|
|
} // namespace IW5
|