Item.java 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /*
  2. * $Header: Item.java, 2/08/2005 00:49:12 luisantonioa Exp $
  3. *
  4. * $Author: luisantonioa $
  5. * $Date: 2/08/2005 00:49:12 $
  6. * $Revision: 1 $
  7. * $Log: Item.java,v $
  8. * Revision 1 2/08/2005 00:49:12 luisantonioa
  9. * Added copyright notice
  10. *
  11. *
  12. * This program is free software: you can redistribute it and/or modify it under
  13. * the terms of the GNU General Public License as published by the Free Software
  14. * Foundation, either version 3 of the License, or (at your option) any later
  15. * version.
  16. *
  17. * This program is distributed in the hope that it will be useful, but WITHOUT
  18. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  19. * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
  20. * details.
  21. *
  22. * You should have received a copy of the GNU General Public License along with
  23. * this program. If not, see <http://www.gnu.org/licenses/>.
  24. */
  25. package net.sf.l2j.gameserver;
  26. import net.sf.l2j.gameserver.templates.L2Item;
  27. import net.sf.l2j.gameserver.templates.StatsSet;
  28. /**
  29. * This class ...
  30. *
  31. * @version $Revision: 1.2 $ $Date: 2004/06/27 08:12:59 $
  32. */
  33. public class Item
  34. {
  35. public int id;
  36. public Enum type;
  37. public String name;
  38. public StatsSet set;
  39. public int currentLevel;
  40. public L2Item item;
  41. }