20 lines
374 B
C#
20 lines
374 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using Vuforia;
|
|
using UnityEngine.SceneManagement;
|
|
|
|
public class PerananManager : MonoBehaviour
|
|
{
|
|
|
|
|
|
public void Back()
|
|
{
|
|
SceneManager.LoadScene("PerananMenu");
|
|
}
|
|
public void Refresh()
|
|
{
|
|
SceneManager.LoadScene(SceneManager.GetActiveScene().buildIndex);
|
|
}
|
|
}
|