Version 1.0 #40

Merged
j23f0779 merged 947 commits from development2 into main 2024-12-13 10:26:49 +01:00
Showing only changes of commit 4b665c4cf2 - Show all commits

View File

@@ -87,4 +87,22 @@ public void received(AnimationEndMessage msg, int from) {
} }
} }
} }
/**
* This method is used to get the isDied boolean.
*
* @return the isDied boolean.
*/
public boolean isDied() {
return isDied;
}
/**
* This method is used to set the isDied boolean.
*
* @param isDied as a boolean.
*/
public void setIsDied(boolean isDied) {
this.isDied = isDied;
}
} }