No puede seleccionar más de 25 temas
Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
|
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
-
- public class UILogin : UIBase
- {
-
- public override void OnOpen(params object[] args) {
-
- }
- public override void OnClose() { }
-
- public void ClickIOSLoginBtn()
- {
- Debug.Log("IOS Login Clicked");
- }
-
- public void ClickYkLoginBtn()
- {
- Debug.Log("YouKe Login Clicked");
- }
- }
|