ShowLicense.cs 470 B

1234567891011121314151617181920212223242526
  1. using UnityEngine;
  2. using UnityEngine.SceneManagement;
  3. using System.Collections;
  4. namespace OpenCVForUnityExample
  5. {
  6. public class ShowLicense : MonoBehaviour
  7. {
  8. // Use this for initialization
  9. void Start ()
  10. {
  11. }
  12. // Update is called once per frame
  13. void Update ()
  14. {
  15. }
  16. public void OnBackButtonClick ()
  17. {
  18. SceneManager.LoadScene ("OpenCVForUnityExample");
  19. }
  20. }
  21. }