| 14 | } |
| 15 | |
| 16 | OpenLoco::LabelFrame importLabelFrame(const S5::LabelFrame& src) |
| 17 | { |
| 18 | OpenLoco::LabelFrame dst{}; |
| 19 | std::ranges::copy(src.left, dst.left); |
| 20 | std::ranges::copy(src.right, dst.right); |
| 21 | std::ranges::copy(src.top, dst.top); |
| 22 | std::ranges::copy(src.bottom, dst.bottom); |
| 23 | return dst; |
| 24 | } |
| 25 | } |
no outgoing calls
no test coverage detected