r2mods/ilspy_dump/ror2_csproj/EntityStates.GameOver/FinishEndingContent.cs

16 lines
377 B
C#

using UnityEngine.Networking;
namespace EntityStates.GameOver;
public class FinishEndingContent : BaseGameOverControllerState
{
public override void OnEnter()
{
base.OnEnter();
if (NetworkServer.active)
{
outer.SetNextState(base.gameEnding.showCredits ? ((BaseGameOverControllerState)new ShowCredits()) : ((BaseGameOverControllerState)new ShowReport()));
}
}
}