15 lines
229 B
C#
15 lines
229 B
C#
|
using RoR2;
|
||
|
|
||
|
namespace EntityStates.ParentEgg;
|
||
|
|
||
|
public class Death : GenericCharacterDeath
|
||
|
{
|
||
|
private float duration;
|
||
|
|
||
|
public override void OnEnter()
|
||
|
{
|
||
|
base.OnEnter();
|
||
|
GetComponent<SpawnerPodsController>().Dissolve();
|
||
|
}
|
||
|
}
|