mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-26 07:18:00 +01:00
13 lines
197 B
C#
13 lines
197 B
C#
|
using System;
|
||
|
|
||
|
namespace Fie.Object
|
||
|
{
|
||
|
[Serializable]
|
||
|
public class FieStatusEffectsRiftEntity : FieStatusEffectEntityBase
|
||
|
{
|
||
|
public float riftForceRate = 1f;
|
||
|
|
||
|
public bool resetMoveForce;
|
||
|
}
|
||
|
}
|