MCPcopy Create free account
hub / github.com/OpenLoco/OpenLoco / exportLabelFrame

Function exportLabelFrame

src/OpenLoco/src/S5/S5LabelFrame.cpp:6–14  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4namespace OpenLoco::S5
5{
6 S5::LabelFrame exportLabelFrame(const OpenLoco::LabelFrame& src)
7 {
8 S5::LabelFrame dst{};
9 std::ranges::copy(src.left, dst.left);
10 std::ranges::copy(src.right, dst.right);
11 std::ranges::copy(src.top, dst.top);
12 std::ranges::copy(src.bottom, dst.bottom);
13 return dst;
14 }
15
16 OpenLoco::LabelFrame importLabelFrame(const S5::LabelFrame& src)
17 {

Callers 2

exportTownFunction · 0.85
exportStationFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected