VampireTest

This commit is contained in:
Paul Gross
2020-04-22 13:05:36 +02:00
parent 7db50ba590
commit 845821d089
20 changed files with 168 additions and 76 deletions

View File

@ -194,9 +194,12 @@ public class Joueur {
return this.carteLieu;
}
public void setRevele(boolean b) {
public void reveal() {
this.revele = true;
}
public void setRevele(boolean b) {
this.revele = b;
}
}