mirror of
https://github.com/ConjureETS/Labo_2_Equ_3_a15.git
synced 2026-03-24 02:00:57 +00:00
17 lines
262 B
C#
17 lines
262 B
C#
using UnityEngine;
|
|
using System.Collections;
|
|
|
|
public class Menu : MonoBehaviour {
|
|
|
|
// Use this for initialization
|
|
void Start () {
|
|
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update () {
|
|
if (Input.GetButton("Fire1"))
|
|
Application.LoadLevel(1);
|
|
}
|
|
}
|