()
| 148 | } |
| 149 | |
| 150 | private thePlayerWon(): boolean{ |
| 151 | // If the player is at the right of the desert, we return true |
| 152 | if(this.getGame().getPlayer().getGlobalPosition().x >= 294) |
| 153 | return true; |
| 154 | |
| 155 | // Else we return false |
| 156 | return false; |
| 157 | } |
| 158 | } |
no test coverage detected