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