using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Thousandto.Code.Logic { /// /// 产生显示效果改变的状态 /// [Flags] public enum FSkinStatusCode { Normal = 0, //正常状态 Grown = 1, //出生状态 BeHit = 2, //被击状态 Dead = 4, //死亡状态 SuperArmor = 8, //霸体状态 } }