驱蚊app
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 

23 行
403 B

  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. public class UILogin : UIBase
  5. {
  6. public override void OnOpen(params object[] args) {
  7. }
  8. public override void OnClose() { }
  9. public void ClickIOSLoginBtn()
  10. {
  11. Debug.Log("IOS Login Clicked");
  12. }
  13. public void ClickYkLoginBtn()
  14. {
  15. Debug.Log("YouKe Login Clicked");
  16. }
  17. }