SW 중심대학 OSS GIT 서버 새로운 리포
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
339 B

5 years ago
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using UnityEngine.SceneManagement;
  5. public class SceneLoad : MonoBehaviour
  6. {
  7. public void ChangeScene(string sceneName)
  8. {
  9. SceneManager.LoadScene(sceneName);
  10. }
  11. public void OnApplicationQuit()
  12. {
  13. Application.Quit();
  14. }
  15. }