Item.java 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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
  13. * it under the terms of the GNU General Public License as published by
  14. * the Free Software Foundation; either version 2, or (at your option)
  15. * any later version.
  16. *
  17. * This program is distributed in the hope that it will be useful,
  18. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  20. * GNU General Public License for more details.
  21. *
  22. * You should have received a copy of the GNU General Public License
  23. * along with this program; if not, write to the Free Software
  24. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  25. * 02111-1307, USA.
  26. *
  27. * http://www.gnu.org/copyleft/gpl.html
  28. */
  29. package net.sf.l2j.gameserver;
  30. import net.sf.l2j.gameserver.templates.L2Item;
  31. import net.sf.l2j.gameserver.templates.StatsSet;
  32. /**
  33. * This class ...
  34. *
  35. * @version $Revision: 1.2 $ $Date: 2004/06/27 08:12:59 $
  36. */
  37. public class Item
  38. {
  39. public int id;
  40. public Enum type;
  41. public String name;
  42. public StatsSet set;
  43. public int currentLevel;
  44. public L2Item item;
  45. }