mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-23 06:17:58 +01:00
16 lines
317 B
C#
16 lines
317 B
C#
|
using Fie.Object;
|
||
|
|
||
|
namespace Fie.Ponies.RisingSun
|
||
|
{
|
||
|
[FiePrefabInfo("Prefabs/RisingSun/Power/RisingSunHitEffectSmall")]
|
||
|
public class FieEmitObjectRisingSunHitEffectSmall : FieEmittableObjectBase
|
||
|
{
|
||
|
private const float DURATION = 1f;
|
||
|
|
||
|
public override void awakeEmitObject()
|
||
|
{
|
||
|
destoryEmitObject(1f);
|
||
|
}
|
||
|
}
|
||
|
}
|