OpenRCT2/src/openrct2/ParkFile.h

23 lines
399 B
C++

#pragma once
#include <string_view>
#include <vector>
struct ObjectRepositoryItem;
namespace OpenRCT2
{
constexpr uint32_t PARK_FILE_MAGIC = 0x4B524150; // PARK
struct IStream;
} // namespace OpenRCT2
class ParkFileExporter
{
public:
std::vector<const ObjectRepositoryItem*> ExportObjectsList;
void Export(std::string_view path);
void Export(OpenRCT2::IStream& stream);
};