123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?php
- /*
- * To change this license header, choose License Headers in Project Properties.
- * To change this template file, choose Tools | Templates
- * and open the template in the editor.
- */
- namespace loyalsoft;
- /**
- * Description of EnumShopGift
- *
- * @author c'y'zhao
- */
- class EnumShopGift extends Enum{
-
- const GateGift_Shop = 1;
- const Daily_Shop = 2;
- const SJunBeiBox_Shop = 3;
- const BujiBox_Shop = 4;
- const Cash_Shop = 5;
- const Gold_Shop = 6;
- }
- class EnumShopCost extends Enum{
-
- /**
- * 免费
- */
- const Free = 1;
-
- /**
- * 金币
- */
- const Gold = 2;
-
- /**
- * 钻石
- */
- const Cash = 3;
-
- const Item = 4;
- }
|