mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-22 00:55:45 +00:00
12 lines
167 B
C++
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);
|
|
};
|