29 lines
599 B
C#
29 lines
599 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.SceneManagement;
|
|
|
|
public class PerananMenu : MonoBehaviour
|
|
{
|
|
public void Back()
|
|
{
|
|
SceneManager.LoadScene("MainMenu");
|
|
}
|
|
public void GoToTMV()
|
|
{
|
|
SceneManager.LoadScene("PlayTMV");
|
|
}
|
|
public void GoToAdenovirus()
|
|
{
|
|
SceneManager.LoadScene("PlayAdenovirus");
|
|
}
|
|
public void GoToSars()
|
|
{
|
|
SceneManager.LoadScene("PlaySars");
|
|
}
|
|
public void GoToBacteriophage()
|
|
{
|
|
SceneManager.LoadScene("PlayBacteriophage");
|
|
}
|
|
}
|