18 lines
406 B
C#
18 lines
406 B
C#
using RoR2;
|
|
|
|
namespace EntityStates.GameOver;
|
|
|
|
public class BaseGameOverControllerState : BaseState
|
|
{
|
|
protected GameOverController gameOverController { get; private set; }
|
|
|
|
protected GameEndingDef gameEnding { get; private set; }
|
|
|
|
public override void OnEnter()
|
|
{
|
|
base.OnEnter();
|
|
gameOverController = GetComponent<GameOverController>();
|
|
gameEnding = gameOverController.runReport.gameEnding;
|
|
}
|
|
}
|