mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-26 15:27:59 +01:00
16 lines
258 B
C#
16 lines
258 B
C#
using System;
|
|
|
|
namespace Fie.Object
|
|
{
|
|
[Serializable]
|
|
public class FieStatusEffectsBuffAndDebuffToAttackEntity : FieStatusEffectEntityBase
|
|
{
|
|
public int skillID = -1;
|
|
|
|
public int abilityID = -1;
|
|
|
|
public float magni;
|
|
|
|
public bool isEnableStack;
|
|
}
|
|
}
|