Ludo-3D/Assets/Scripts/UI/Managers/UrlManager.cs
2026-03-26 15:53:51 +05:30

25 lines
597 B
C#

using System;
using UnityEngine;
public class UrlManager : MonoBehaviour
{
private static string PrivacyPolicy = "https://go88.bh/chinh-sach-bao-mat.php";
private static string TermsOfUse = "https://go88.bh/dieu-khoan-su-dung.php";
private static string ContactUs = "https://go88.bh/lien-he.php";
public static void OpenPrivacyPolicy()
{
Application.OpenURL(PrivacyPolicy);
}
public static void OpenTermsOfUse()
{
Application.OpenURL(TermsOfUse);
}
public static void OpenContacts()
{
Application.OpenURL(ContactUs);
}
}