1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- package net.sf.l2j.gameserver;
- import net.sf.l2j.gameserver.templates.L2Item;
- import net.sf.l2j.gameserver.templates.StatsSet;
- public class Item
- {
- public int id;
- public Enum type;
- public String name;
- public StatsSet set;
- public int currentLevel;
- public L2Item item;
- }
|