| 42 | #include <ostream> |
| 43 | |
| 44 | void TrapTileData::fireSeatsSawTriggering() |
| 45 | { |
| 46 | if(mTrapEntity == nullptr) |
| 47 | return; |
| 48 | |
| 49 | for(Seat* seat : mSeatsVision) |
| 50 | mTrapEntity->seatSawTriggering(seat); |
| 51 | } |
| 52 | |
| 53 | void TrapTileData::seatSawTriggering(Seat* seat) |
| 54 | { |
no test coverage detected