using UnityEngine; namespace Nox.Core { /// /// Scene generic authoring/reference collection. Can also contain the settings for booting up a particular scene /// public class SceneReference : MonoBehaviour { public GameState gameState = GameState.Invalid; public PlayMode playMode; } }