| 398 | } |
| 399 | |
| 400 | bool PointCollisionData::IsWall() |
| 401 | { |
| 402 | return (GetFloorHeight() == NO_HEIGHT || GetCeilingHeight() == NO_HEIGHT || |
| 403 | GetFloorHeight() <= GetCeilingHeight()); |
| 404 | } |
| 405 | |
| 406 | bool PointCollisionData::IsSteepFloor() |
| 407 | { |
no test coverage detected