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