123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?php
- namespace loyalsoft;
- /*
- * 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.
- */
- /**
- * Description of Enum_AchieveType
- *
- * @author c'y'zhao
- */
- class E_EquipPosition extends Enum {
- const None = 0;
- /**
- * 法帽
- */
- const Hat = 1;
- /**
- * 法杖
- */
- const Weapon = 2;
- /**
- * 法袍
- */
- const Robe = 3;
- /**
- * 戒指
- */
- const Ring = 4;
-
- /**
- * 靴子
- */
- const Boots = 5;
- /**
- * 项链
- */
- const Necklace = 6;
- }
|