(direction)
| 1102 | } |
| 1103 | |
| 1104 | is (direction) { |
| 1105 | return this.name === direction.name |
| 1106 | } |
| 1107 | |
| 1108 | isOpposite (direction) { |
| 1109 | return this.vector.x === direction.vector.x * -1 && this.vector.y === direction.vector.y * -1 |
no outgoing calls
no test coverage detected