mirror of
https://github.com/OpenRCT2/OpenRCT2.git
synced 2025-01-23 02:41:58 -05:00
29 lines
1,021 B
C++
29 lines
1,021 B
C++
/*****************************************************************************
|
|
* Copyright (c) 2014-2018 OpenRCT2 developers
|
|
*
|
|
* For a complete list of all authors, please refer to contributors.md
|
|
* Interested in contributing? Visit https://github.com/OpenRCT2/OpenRCT2
|
|
*
|
|
* OpenRCT2 is licensed under the GNU General Public License version 3.
|
|
*****************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#include "FunctionCall.hpp"
|
|
#include "SegmentSupportHeightCall.hpp"
|
|
#include "SideTunnelCall.hpp"
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
namespace Printer
|
|
{
|
|
std::string PrintFunctionCall(function_call call, uint16_t baseHeight);
|
|
std::string PrintFunctionCalls(std::vector<function_call> calls, uint16_t baseHeight);
|
|
|
|
std::string PrintSegmentSupportHeightCalls(std::vector<SegmentSupportCall> calls);
|
|
|
|
std::string PrintSideTunnelCalls(TunnelCall tunnelCalls[4][4]);
|
|
|
|
std::string PrintHeightOffset(uint16_t height, uint16_t baseHeight);
|
|
} // namespace Printer
|