You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
349 B
15 lines
349 B
using Entitas;
|
|
|
|
namespace CoreGame.Render
|
|
{
|
|
/// <summary>
|
|
/// 可刷新的护盾组件,被击破后,会自动刷新
|
|
/// </summary>
|
|
[Combat]
|
|
public class RefreshableHpShieldComponent : IComponent
|
|
{
|
|
public ElementType elementType;
|
|
public long shieldTotalVal;
|
|
public float refreshInterval;
|
|
}
|
|
}
|