Added getter/setter to PlayerDTO

Quicksave
Justin 2025-06-19 21:14:45 +02:00
parent f6cfc8fd9b
commit 241a532327
1 changed files with 15 additions and 0 deletions

View File

@ -9,4 +9,19 @@ public class PlayerDTO {
this.color = color;
}
public String getName() {
return name;
}
public String getColor() {
return color;
}
public void setName(String name) {
this.name = name;
}
public void setColor(String color) {
this.color = color;
}
}