()
| 103 | } |
| 104 | |
| 105 | private thePlayerWon(): boolean{ |
| 106 | // If the player is at the right of the desert, we return true |
| 107 | if(this.getGame().getPlayer().getGlobalPosition().x >= 138) |
| 108 | return true; |
| 109 | |
| 110 | // Else we return false |
| 111 | return false; |
| 112 | } |
| 113 | } |
no test coverage detected