1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <?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 R = 1;
- /**
- *
- */
- const Sr= 2;
- /**
- *
- */
- const Ssr= 3;
-
- }
- /**
- *
- */
- //const Sr = 1;
- /**
- *
- */
- //const Ssr= 2;
- /**
- *
- */
- //const Ur= 3;
|