Files
Net.Project.B/Src/Ability/AbilityComponents.cs

16 lines
347 B
C#
Raw Normal View History

2025-08-03 02:28:22 +08:00
using System.Collections;
using System.Collections.Generic;
namespace Net.Project.B.Buff
{
public struct FlashingBuff : IBuff
{
public float Value { get; set; }
public override bool Equals(object obj) => obj?.GetType() == GetType();
public override int GetHashCode() => GetType().GetHashCode();
}
}