Items lil bit

This commit is contained in:
Artem Didytschuk 2021-06-28 08:23:55 +02:00
parent 88369aed53
commit d6acbbec29
1 changed files with 7 additions and 4 deletions

View File

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