123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?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 Enum_Active
- *
- * @author cyzhao
- */
- class Enum_Active extends Enum{
- /**
- * 新手活动
- */
- const NewWish = 1;
- /**
- * 常驻活动
- */
- const OpenWish= 2;
- /**
- * 唤灵师活动
- */
- const HuanlingshiActive= 3;
- /**
- * 言灵活动
- */
- const YanlingActive= 4;
- /**
- * 武器活动
- */
- const WuqiActive= 5;
- }
- class Enum_ActiveItemType extends Enum{
- /**
- *
- */
- const Sr = 1;
- /**
- *
- */
- const Ssr= 2;
- /**
- *
- */
- const Ur= 3;
-
- }
|