mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-26 07:18:00 +01:00
12 lines
241 B
C#
12 lines
241 B
C#
namespace Fie.Object
|
|
{
|
|
public sealed class FieStatusEffectsGrab : FieStatusEffectsBase
|
|
{
|
|
public new FieStatusEffectsGrabEntity _entity;
|
|
|
|
public override FieStatusEffectEntityBase GetStatusEffectEntity()
|
|
{
|
|
return _entity;
|
|
}
|
|
}
|
|
}
|