using Scampz.GameJam.Assets.Scripts; using UnityEngine; using UnityEngine.SceneManagement; namespace Scampz.GameJam { public class TitleScreen : MonoBehaviour { void Update() { if (Input.GetButton(InputOptions.Submit)) GameManager.Instance.LoadScene(SceneNames.WorldMap, LoadSceneMode.Single); } } }