maxhacker11

MainMenu.cs

Jan 2nd, 2024
2,384
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.31 KB | Source Code | 0 0
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using UnityEngine.SceneManagement;
  5.  
  6. public class MainMenu : MonoBehaviour
  7. {
  8.     public void Play()
  9.     {
  10.         SceneManager.LoadScene("Game");
  11.     }
  12.  
  13.     public void Quit()
  14.     {
  15.         Application.Quit();
  16.     }
  17. }
  18.  
Advertisement
Add Comment
Please, Sign In to add comment