mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-21 16:45:44 +00:00
11 lines
166 B
C++
11 lines
166 B
C++
#pragma once
|
|
#include <string>
|
|
#include <ostream>
|
|
|
|
#include "Zone/Zone.h"
|
|
|
|
class ZoneWriting
|
|
{
|
|
public:
|
|
static bool WriteZone(std::ostream& stream, Zone* zone);
|
|
}; |