Items lil bit

This commit is contained in:
2021-06-28 08:23:55 +02:00
parent 88369aed53
commit d6acbbec29

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 "";
} }
} }