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

15 lines
267 B
C#
Raw Normal View History

2024-10-04 07:26:37 +00:00
using RoR2;
namespace EntityStates.ParentEgg;
public class BaseEggState : BaseState
{
protected SpawnerPodsController controller { get; private set; }
public override void OnEnter()
{
base.OnEnter();
controller = GetComponent<SpawnerPodsController>();
}
}