()
| 1 | class DiagonalCollisionInfo { |
| 2 | constructor() { |
| 3 | this.collisionPoints = [] |
| 4 | this.leftSideOfPlayerCollided = false; |
| 5 | this.rightSideOfPlayerCollided = false; |
| 6 | this.topSideOfPlayerCollided = false; |
| 7 | this.bottomSideOfPlayerCollided = false; |
| 8 | } |
| 9 | |
| 10 | |
| 11 |
nothing calls this directly
no outgoing calls
no test coverage detected