1
0
Fork 0
Bildschirmflausch-LD41/Assets/Scripts/UIController.cs

34 lines
560 B
C#
Raw Normal View History

2018-04-21 12:22:17 +02:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class UIController : MonoBehaviour {
// Use this for initialization
void Start () {
}
// Update is called once per frame
void Update () {
2018-04-21 14:26:17 +02:00
}
public static UIController instance;
private GameObject score;
private GameObject pauseMenu;
private GameObject GameOverPanel;
public UIController()
{
UIController.instance = this;
}
public void quitGame()
{
Application.Quit();
}
2018-04-21 12:22:17 +02:00
}
2018-04-21 14:26:17 +02:00