r2mods/ilspy_dump/ror2_csproj/EntityStates.ParentEgg/BaseEggState.cs

15 lines
267 B
C#

using RoR2;
namespace EntityStates.ParentEgg;
public class BaseEggState : BaseState
{
protected SpawnerPodsController controller { get; private set; }
public override void OnEnter()
{
base.OnEnter();
controller = GetComponent<SpawnerPodsController>();
}
}