RandomGFGoStop/Assets/Scripts/UI/Popup/NotMinimumVersionPopup.cs

22 lines
550 B
C#
Raw Normal View History

2025-08-27 21:08:17 +00:00
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);
}
}