refactor: use OutputPathFilesystem for writing fastfiles

This commit is contained in:
Jan
2025-01-14 22:03:44 +01:00
parent a364e63258
commit cc67f6e730
34 changed files with 225 additions and 232 deletions

View File

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