Item.java 1.3 KB

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