mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-20 16:15:43 +00:00
16 lines
463 B
C++
16 lines
463 B
C++
#pragma once
|
|
|
|
#include "ContentLister/ZoneDefWriter.h"
|
|
|
|
namespace IW3
|
|
{
|
|
class ZoneDefWriter final : public AbstractZoneDefWriter
|
|
{
|
|
protected:
|
|
void WriteMetaData(ZoneDefinitionOutputStream& stream, const UnlinkerArgs* args, Zone* zone) const override;
|
|
void WriteContent(ZoneDefinitionOutputStream& stream, const UnlinkerArgs* args, Zone* zone) const override;
|
|
|
|
public:
|
|
bool CanHandleZone(Zone* zone) const override;
|
|
};
|
|
} |