]> git.lizzy.rs Git - SuperMouseAdventure.git/blob - 2DGame/Assets/Scripts/StartScreen.cs
Start-Bildschirm v0.2
[SuperMouseAdventure.git] / 2DGame / Assets / Scripts / StartScreen.cs
1 using System.Collections;
2 using System.Collections.Generic;
3 using UnityEngine;
4 using UnityEngine.SceneManagement;
5
6 public class StartScreen : MonoBehaviour
7 {
8     public void PlayGame()
9     {
10         SceneManager.LoadScene(1);
11     }
12
13     public void QuitGame()
14     {
15         Application.Quit();
16     }
17 }