OnAppInfoClick.cs 204 B

123456789101112
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. public class OnAppInfoClick : UIButton {
  5. public ScreenBase Info;
  6. void OnClick () {
  7. Info.Show();
  8. }
  9. }