22 lines
461 B
C#
22 lines
461 B
C#
using System.Collections;
|
|
using UnityEngine;
|
|
using UnityEngine.SceneManagement;
|
|
|
|
public class GameManager : MonoBehaviour
|
|
{
|
|
public void PindahHalaman(string sceneName)
|
|
{
|
|
SceneManager.LoadScene(sceneName);
|
|
}
|
|
|
|
public void OpenLink()
|
|
{
|
|
Application.OpenURL("https://drive.google.com/drive/folders/1nre5ScraBsovCU6tHacfGYs5oemQdkcC?usp=sharing");
|
|
}
|
|
|
|
public void QuitApplication()
|
|
{
|
|
Application.Quit();
|
|
}
|
|
}
|