25 lines
597 B
C#
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);
|
||
|
|
}
|
||
|
|
}
|