mirror of
https://github.com/ConjureETS/Human-Farm-Tycoon.git
synced 2026-03-24 18:31:07 +00:00
11 lines
196 B
C#
11 lines
196 B
C#
using UnityEngine;
|
|
using System.Collections;
|
|
|
|
public class OpenOtherScene : MonoBehaviour {
|
|
|
|
public void OpenScene(string sceneName)
|
|
{
|
|
Application.LoadLevel(sceneName);
|
|
}
|
|
}
|