mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-20 16:15:43 +00:00
13 lines
283 B
C++
13 lines
283 B
C++
#pragma once
|
|
|
|
#include "ContentLister/ZoneDefWriter.h"
|
|
|
|
namespace IW4
|
|
{
|
|
class ZoneDefWriter final : public IZoneDefWriter
|
|
{
|
|
public:
|
|
bool CanHandleZone(Zone* zone) const override;
|
|
void WriteZoneDef(Zone* zone, FileAPI::IFile* file) const override;
|
|
};
|
|
} |