| 4 | namespace 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 | { |
no outgoing calls
no test coverage detected