NLDClient-yudde/ProjectNLD/Assets/Code/Scripts/Gameplay/Bullet/Data/InnerBuffID.cs

22 lines
403 B
C#
Raw Normal View History

2023-08-22 19:08:45 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Gameplay.Bullet
{
public static class InnerBuffID
{
public const int NORMAL_DAMAGE = 1;
public const int MORALE_DAMAGE = 2;
public const int AUTO_RECOVER_MORALE = 3;
2023-10-19 15:00:19 +08:00
public const int RETREAT_BUFF_ID = 6;
2023-08-22 19:08:45 +08:00
}
}