using UnityEngine.SceneManagement; namespace UnityEngine.Sequences { /// /// Interface to implement for new scene activation behaviour. /// internal interface ISceneActivationBehaviour { void Execute(Scene scene, bool newState); } }