mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-26 23:37:59 +01:00
19 lines
344 B
C#
19 lines
344 B
C#
using Fie.Object;
|
|
|
|
namespace Fie.Ponies.RisingSun
|
|
{
|
|
[FiePrefabInfo("Prefabs/RisingSun/Power/RisingSunSpellEffect")]
|
|
public class FieEmitObjectRisingSunSpellEffect : FieEmittableObjectBase
|
|
{
|
|
private const float duration = 2f;
|
|
|
|
public override void awakeEmitObject()
|
|
{
|
|
destoryEmitObject(2f);
|
|
}
|
|
|
|
private void Update()
|
|
{
|
|
}
|
|
}
|
|
}
|