mirror of
https://github.com/ConjureETS/Labo_2_Equ_1_a15.git
synced 2026-03-24 10:01:00 +00:00
11 lines
172 B
C#
11 lines
172 B
C#
using UnityEngine;
|
|
using System.Collections;
|
|
|
|
public class LoadLevelOnClick : MonoBehaviour
|
|
{
|
|
public void LoadScene(int level)
|
|
{
|
|
Application.LoadLevel(level);
|
|
}
|
|
}
|