Human-Farm-Tycoon/Assets/Script/OpenOtherScene.cs
2015-08-11 09:59:12 -04:00

11 lines
196 B
C#

using UnityEngine;
using System.Collections;
public class OpenOtherScene : MonoBehaviour {
public void OpenScene(string sceneName)
{
Application.LoadLevel(sceneName);
}
}