Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package items;
- public class Item {
- Boolean usage = false;
- String ItemName = " ";
- String ItemType =" ";
- static int ID = 0;
- int Stacknum = 1;
- int maxStacknum = 1;
- public static int getID() {
- return(ID);
- }
- }//end of class
- package items;
- public class Pots extends Item{
- ItemName = " ";//error here
- }//end of class
Advertisement
Add Comment
Please, Sign In to add comment