EnumShopGift.php 715 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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 EnumShopGift
  10. *
  11. * @author c'y'zhao
  12. */
  13. class EnumShopGift extends Enum{
  14. const GateGift_Shop = 1;
  15. const Daily_Shop = 2;
  16. const SJunBeiBox_Shop = 3;
  17. const BujiBox_Shop = 4;
  18. const Cash_Shop = 5;
  19. const Gold_Shop = 6;
  20. }
  21. class EnumShopCost extends Enum{
  22. /**
  23. * 免费
  24. */
  25. const Free = 1;
  26. /**
  27. * 金币
  28. */
  29. const Gold = 2;
  30. /**
  31. * 钻石
  32. */
  33. const Cash = 3;
  34. const Item = 4;
  35. }