Inventar/Gegenstand.java
Sobottasgithub 67df614d41 Init
2025-11-12 11:39:20 +01:00

18 lines
303 B
Java

public class Gegenstand {
private String name;
private int ausdauer;
public Gegenstand(String name, int ausdauer) {
this.name = name;
this.ausdauer = ausdauer;
}
public String getName() {
return name;
}
public int getAusdauer() {
return ausdauer;
}
}