mirror of
https://github.com/ConjureETS/Labo_2_equ_2_a15.git
synced 2026-03-24 01:21:07 +00:00
16 lines
248 B
C#
16 lines
248 B
C#
using UnityEngine;
|
|
using System.Collections;
|
|
|
|
public class MenuBehavior : MonoBehaviour {
|
|
|
|
public void LoadScene(int level)
|
|
{
|
|
Application.LoadLevel(level);
|
|
}
|
|
|
|
public void QuitGame()
|
|
{
|
|
Application.Quit();
|
|
}
|
|
}
|