using UnityEngine;
namespace Chernobyl.Unity
{
///
/// Gives access to calls from the Unity Editor.
///
[CreateAssetMenu]
public class SceneManager : ScriptableObject
{
///
/// See for more info.
///
public void LoadScene(string sceneName) => UnityEngine.SceneManagement.SceneManager.LoadScene(sceneName);
}
}