16 lines
347 B
C#
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();
|
|
}
|
|
|
|
|
|
}
|
|
|