mirror of
https://github.com/ConjureETS/PillowFight.git
synced 2026-03-24 00:50:59 +00:00
23 lines
377 B
C#
23 lines
377 B
C#
using UnityEngine;
|
|
using System.Collections;
|
|
|
|
public class SimpleMenu : MonoBehaviour
|
|
{
|
|
public int NextLevel;
|
|
|
|
|
|
// Update is called once per frame
|
|
void Update () {
|
|
if (Input.anyKeyDown) {
|
|
Application.LoadLevel(NextLevel);
|
|
}
|
|
}
|
|
|
|
IEnumerator AutoSkip() {
|
|
|
|
yield return new WaitForSeconds(5);
|
|
|
|
|
|
}
|
|
}
|