18 lines
313 B
C#
18 lines
313 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace Game
|
|
{
|
|
public enum BattleResultFlag
|
|
{
|
|
Normal, //正常伤血
|
|
BaoJi, //暴击
|
|
Miss, //MISS
|
|
HuiXue, //回血
|
|
HuiLan, //回蓝
|
|
None, //不显示
|
|
}
|
|
}
|
|
|