Files
Scampz/Assets/Scripts/TitleScreen/TitleScreen.cs
2022-08-21 01:59:54 -07:00

18 lines
339 B
C#

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