mirror of
https://athene2.informatik.unibw-muenchen.de/progproj/gruppen-ht24/Gruppe-02.git
synced 2025-09-14 08:41:51 +02:00
first tests
This commit is contained in:
@@ -158,6 +158,14 @@ public class Player implements FieldVisitor<Void>{
|
||||
return accountBalance >= 0;
|
||||
}
|
||||
|
||||
public PlayerState getState() {
|
||||
return state;
|
||||
}
|
||||
|
||||
public void setState(PlayerState state) {
|
||||
this.state = state;
|
||||
}
|
||||
|
||||
/**
|
||||
* Moves the player by a given number of steps, handling board wrapping.
|
||||
*
|
||||
|
@@ -19,7 +19,7 @@ public class Card {
|
||||
return description;
|
||||
} // TODO wird gerade in der EventCard zur erstellung des Popup genutzt
|
||||
|
||||
String getKeyword() {
|
||||
public String getKeyword() {
|
||||
return keyword;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user