mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-22 22:07:59 +01:00
10 lines
174 B
C#
10 lines
174 B
C#
using System;
|
|
|
|
namespace Fie.Object
|
|
{
|
|
[Serializable]
|
|
public class FieStatusEffectsTimeScalerEntity : FieStatusEffectEntityBase
|
|
{
|
|
public float targetTimeScale = 1f;
|
|
}
|
|
}
|