forked from Shardstone/trail-into-darkness
13 lines
348 B
C#
13 lines
348 B
C#
using UnityEngine;
|
|
|
|
namespace Nox.Core {
|
|
/// <summary>
|
|
/// Scene generic authoring/reference collection. Can also contain the settings for booting up a particular scene
|
|
/// </summary>
|
|
public class SceneReference : MonoBehaviour {
|
|
public GameState gameState = GameState.Invalid;
|
|
public PlayMode playMode;
|
|
}
|
|
|
|
}
|