| 4 | namespace OpenLoco::S5 |
| 5 | { |
| 6 | S5::Animation exportAnimation(const OpenLoco::World::Animation& src) |
| 7 | { |
| 8 | S5::Animation dst{}; |
| 9 | dst.baseZ = src.baseZ; |
| 10 | dst.type = src.type; |
| 11 | dst.pos = src.pos; |
| 12 | |
| 13 | return dst; |
| 14 | } |
| 15 | |
| 16 | OpenLoco::World::Animation importAnimation(const S5::Animation& src) |
| 17 | { |