EscapeRoom Projekt hinzugefügt

This commit is contained in:
2020-09-24 10:53:09 +02:00
commit 61affb4d0d
16 changed files with 1099 additions and 0 deletions

17
Item.java Normal file
View File

@@ -0,0 +1,17 @@
public abstract class Item extends WithHint {
private String name;
public Item( String pName ) {
name = pName;
}
public String getName() {
return name;
}
public abstract String use();
}