mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-02-02 11:45:13 +01:00
Co-authored-by: Gymnasiast <Gymnasiast@users.noreply.github.com> Co-authored-by: duncanspumpkin <duncanspumpkin@users.noreply.github.com> Co-authored-by: ZehMatt <Zehmatt@users.noreply.github.com> Co-authored-by: Broxzier <Broxzier@users.noreply.github.com>
23 lines
399 B
C++
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);
|
|
};
|