Advertisement
Guest User

Untitled

a guest
Feb 17th, 2020
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 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 PlayGame ()
  9. {
  10. Application.LoadLevel(1);
  11. }
  12. public void QuitGame ()
  13. {
  14. Application.Quit();
  15. }
  16.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement