20 lines
417 B
C#
20 lines
417 B
C#
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");
|
|
}
|
|
}
|
|
}
|
|
} |