| 115 | } |
| 116 | |
| 117 | static Entity exportSplash(const OpenLoco::Splash& src) |
| 118 | { |
| 119 | Entity dst{}; |
| 120 | S5::Splash& dstSplash = reinterpret_cast<S5::Splash&>(dst); |
| 121 | dstSplash.base = exportEntityBase(src, enumValue(EffectType::splash), 0); |
| 122 | dstSplash.frame = src.frame; |
| 123 | return dst; |
| 124 | } |
| 125 | |
| 126 | static Entity exportFireball(const OpenLoco::Fireball& src) |
| 127 | { |
no test coverage detected