驱蚊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. }