ShowLicense.cs 437 B

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