| 239 | } |
| 240 | |
| 241 | void BattleAnimationMap::Draw(Bitmap& dst) { |
| 242 | if (IsOnlySound()) { |
| 243 | return; |
| 244 | } |
| 245 | |
| 246 | if (global) { |
| 247 | DrawGlobal(dst); |
| 248 | } else { |
| 249 | DrawSingle(dst); |
| 250 | } |
| 251 | } |
| 252 | |
| 253 | void BattleAnimationMap::DrawGlobal(Bitmap& dst) { |
| 254 | auto rect = Main_Data::game_screen->GetScreenEffectsRect(); |
nothing calls this directly
no test coverage detected