2015-11-25 22:29:02 -05:00

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);
}
}