Files
Net.Project.B/Src/Ability/AbilityComponents.cs
CortexCore 519c93d651 1
2025-08-03 02:28:22 +08:00

16 lines
347 B
C#

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();
}
}