14 lines
220 B
Java
14 lines
220 B
Java
package electrosphere.game.data.item;
|
|
|
|
/**
|
|
* Hardcoded item ids for items
|
|
*/
|
|
public class ItemIdStrings {
|
|
|
|
/**
|
|
* The basic stone axe
|
|
*/
|
|
public static final String ITEM_STONE_AXE = "Stone Axe";
|
|
|
|
}
|