This commit is contained in:
Tim
2021-06-28 09:08:55 +02:00
2 changed files with 7 additions and 4 deletions

View File

@@ -1,13 +1,16 @@
package main.items; package main.items;
//TODO:Hier soll die Item Oberklasse entstehen //TODO:Hier soll die Item Oberklasse entstehen
public class Item { public class Item {
private String icon;
public Item(String iconPath){
icon=iconPath;
}
/** /**
* TODO: * Gibt den Pfad zu dem Icon dieses Items an.
* @return * @return String, der den Pfad des Icons dieses Items beschreibt
*/ */
public String getIconPath(){ public String getIconPath(){
// TODO: return icon;
return "";
} }
} }

Binary file not shown.

After

Width:  |  Height:  |  Size: 116 B