r2mods/ilspy_dump/ror2_csproj/EntityStates.SurvivorPod.Ba.../Opened.cs

12 lines
225 B
C#

namespace EntityStates.SurvivorPod.BatteryPanel;
public class Opened : BaseBatteryPanelState
{
public override void OnEnter()
{
base.OnEnter();
PlayPodAnimation("Additive", "OpenPanelFinished");
EnablePickup();
}
}