mirror of
https://github.com/Steffo99/keep-everything-alive.git
synced 2024-11-22 09:24:19 +00:00
14 lines
283 B
C#
14 lines
283 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.SceneManagement;
|
|
|
|
public class StartOnAnyKey : MonoBehaviour
|
|
{
|
|
void Update()
|
|
{
|
|
if(Input.anyKeyDown) {
|
|
SceneManager.LoadScene("Default");
|
|
}
|
|
}
|
|
}
|