2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2026-05-01 16:09:36 +00:00

Add ZoneWriting basis

This commit is contained in:
Jan
2021-03-15 22:36:07 +01:00
parent 301f6e3e7a
commit 9d26c9c927
66 changed files with 1344 additions and 111 deletions
+3 -1
View File
@@ -1,9 +1,11 @@
#pragma once
#include <string>
#include <ostream>
#include "Zone/Zone.h"
class ZoneWriting
{
public:
static bool WriteZone(Zone* zone);
static bool WriteZone(std::ostream& stream, Zone* zone);
};