22 lines
550 B
C#
22 lines
550 B
C#
|
|
using System.Collections;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using UnityEngine;
|
||
|
|
|
||
|
|
public class NotMinimumVersionPopup : PopupBase
|
||
|
|
{
|
||
|
|
[SerializeField]
|
||
|
|
private string storeURL = "https://play.google.com/store/apps/details?id=com.SkaGames.GSProject";
|
||
|
|
|
||
|
|
public override void ShowPopup(int drawOrder)
|
||
|
|
{
|
||
|
|
base.ShowPopup(drawOrder);
|
||
|
|
GameManager.Sound.PlaySFX(ESFXType.Open_Popup);
|
||
|
|
}
|
||
|
|
|
||
|
|
public void ClickMoveStore()
|
||
|
|
{
|
||
|
|
GameManager.Sound.PlaySFX(ESFXType.Button_Hit);
|
||
|
|
Application.OpenURL(storeURL);
|
||
|
|
}
|
||
|
|
}
|