E_EquipPosition.php 650 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?php
  2. namespace loyalsoft;
  3. /*
  4. * To change this license header, choose License Headers in Project Properties.
  5. * To change this template file, choose Tools | Templates
  6. * and open the template in the editor.
  7. */
  8. /**
  9. * Description of Enum_AchieveType
  10. *
  11. * @author c'y'zhao
  12. */
  13. class E_EquipPosition extends Enum {
  14. const None = 0;
  15. /**
  16. * 法帽
  17. */
  18. const Hat = 1;
  19. /**
  20. * 法杖
  21. */
  22. const Weapon = 2;
  23. /**
  24. * 法袍
  25. */
  26. const Robe = 3;
  27. /**
  28. * 戒指
  29. */
  30. const Ring = 4;
  31. /**
  32. * 靴子
  33. */
  34. const Boots = 5;
  35. /**
  36. * 项链
  37. */
  38. const Necklace = 6;
  39. }