ClassLevel.java 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /*
  2. * $Header: ClassLevel.java, 24/11/2005 15:56:45 luisantonioa Exp $
  3. *
  4. * $Author: luisantonioa $
  5. * $Date: 24/11/2005 15:56:45 $
  6. * $Revision: 1 $
  7. * $Log: ClassLevel.java,v $
  8. * Revision 1 24/11/2005 15:56:45 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 com.l2jserver.gameserver.model.base;
  26. /**
  27. * This class ...
  28. *
  29. * @version $Revision: 1.2 $ $Date: 2004/06/27 08:12:59 $
  30. */
  31. public enum ClassLevel
  32. {
  33. First,
  34. Second,
  35. Third,
  36. Fourth
  37. }