2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-06-30 16:21:51 +00:00
Files
OpenAssetTools/src/ZoneWriting/ZoneWriting.h
2023-11-19 21:07:21 +00:00

12 lines
167 B
C++

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