using UnityEngine; namespace Unity.Multiplayer.Samples.BossRoom.Client { /// /// Client state-logic for post-game screen. (We don't actually need to do anything here /// right now, but we inherit our base-class's OnApplicationQuit() handler.) /// public class ClientPostGameState : GameStateBehaviour { public override GameState ActiveState { get { return GameState.PostGame; } } } }