2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-06-21 11:55:38 +00:00

12 lines
156 B
C++

#pragma once
#include "Zone/Zone.h"
#include <ostream>
class ZoneWriting
{
public:
static bool WriteZone(std::ostream& stream, const Zone& zone);
};