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