using System; using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.SceneManagement; // ReSharper disable once CheckNamespace namespace BlueWaterProject { public class Title : MonoBehaviour { private void Update() { if (Input.anyKeyDown) { SceneManager.LoadScene("02.Tycoon"); } } } }