| 31 | } // namespace |
| 32 | |
| 33 | BattleUnitTileHelper::BattleUnitTileHelper(TileMap &map, BattleUnitType type, bool allowJumping) |
| 34 | : BattleUnitTileHelper( |
| 35 | map, (type == BattleUnitType::LargeFlyer || type == BattleUnitType::LargeWalker), |
| 36 | (type == BattleUnitType::LargeFlyer || type == BattleUnitType::SmallFlyer), allowJumping, |
| 37 | (type == BattleUnitType::LargeFlyer || type == BattleUnitType::LargeWalker) ? 70 : 32, |
| 38 | nullptr) |
| 39 | { |
| 40 | } |
| 41 | |
| 42 | BattleUnitTileHelper::BattleUnitTileHelper(TileMap &map, bool large, bool flying, bool allowJumping, |
| 43 | int maxHeight, sp<TileObjectBattleUnit> tileObject) |
nothing calls this directly
no test coverage detected