2026-07-13 18:14:23 +08:00
|
|
|
using System.Collections;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using UnityEngine;
|
|
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
|
using UnityEditor;
|
|
|
|
|
|
|
|
|
|
public class BrigdeIOS
|
|
|
|
|
{
|
2026-07-14 14:48:39 +08:00
|
|
|
[DllImport("__Internal")]
|
2026-07-13 18:14:23 +08:00
|
|
|
public static extern void SetDarkThough(bool though);
|
|
|
|
|
[DllImport("__Internal")]
|
|
|
|
|
public static extern void openWebview();
|
2026-07-14 14:48:39 +08:00
|
|
|
[DllImport("__Internal")]
|
|
|
|
|
public static extern void showGameA(bool flag);
|
2026-07-13 18:14:23 +08:00
|
|
|
}
|