17 lines
335 B
C#
17 lines
335 B
C#
|
|
using System.Collections;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using UnityEngine;
|
|||
|
|
|
|||
|
|
public class UrlShow : BaseShow
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// <20><><EFBFBD>굥<EFBFBD><EAB5A5><EFBFBD>¼<EFBFBD>
|
|||
|
|
/// </summary>
|
|||
|
|
public override void OnClick()
|
|||
|
|
{
|
|||
|
|
if (BaseController.CanControl && CanClick)
|
|||
|
|
{
|
|||
|
|
H5Controller.OpenUrl(info.URL);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|