Tanoda
ShowLicense.cs
Go to the documentation of this file.
1using UnityEngine;
2using System.Collections;
3
4#if UNITY_5_3 || UNITY_5_3_OR_NEWER
5using UnityEngine.SceneManagement;
6#endif
7
9{
10 public class ShowLicense : MonoBehaviour
11 {
12 // Use this for initialization
13 void Start ()
14 {
15
16 }
17
18 // Update is called once per frame
19 void Update ()
20 {
21
22 }
23
24 public void OnBackButtonClick ()
25 {
26 #if UNITY_5_3 || UNITY_5_3_OR_NEWER
27 SceneManager.LoadScene ("WebGLFileUploaderExample");
28 #else
29 Application.LoadLevel ("WebGLFileUploaderExample");
30 #endif
31 }
32 }
33}