Enum_Active.php 796 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <?php
  2. /*
  3. * To change this license header, choose License Headers in Project Properties.
  4. * To change this template file, choose Tools | Templates
  5. * and open the template in the editor.
  6. */
  7. namespace loyalsoft;
  8. /**
  9. * Description of Enum_Active
  10. *
  11. * @author cyzhao
  12. */
  13. class Enum_Active extends Enum{
  14. /**
  15. * 新手活动
  16. */
  17. const NewWish = 1;
  18. /**
  19. * 常驻活动
  20. */
  21. const OpenWish= 2;
  22. /**
  23. * 唤灵师活动
  24. */
  25. const HuanlingshiActive= 3;
  26. /**
  27. * 言灵活动
  28. */
  29. const YanlingActive= 4;
  30. /**
  31. * 武器活动
  32. */
  33. const WuqiActive= 5;
  34. }
  35. class Enum_ActiveItemType extends Enum{
  36. /**
  37. *
  38. */
  39. const Sr = 1;
  40. /**
  41. *
  42. */
  43. const Ssr= 2;
  44. /**
  45. *
  46. */
  47. const Ur= 3;
  48. }