1
This commit is contained in:
15
Src/Ability/AbilityComponents.cs
Normal file
15
Src/Ability/AbilityComponents.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
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();
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user