using UnityEngine.SceneManagement; namespace StansAssets.SceneManagement { /// /// The info about the scene. /// This alternative was created since is not always has valid info /// specially when it was loaded / unloaded using addressable. /// public class SceneInfo { public string Name { get; } internal SceneInfo(string name) { Name = name; } } }