Files
MergeGangRush_unity_IOS/Assets/Scripts/BrigdeIOS.cs
T
2026-07-14 14:48:39 +08:00

16 lines
409 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using System.Runtime.InteropServices;
using UnityEditor;
public class BrigdeIOS
{
[DllImport("__Internal")]
public static extern void SetDarkThough(bool though);
[DllImport("__Internal")]
public static extern void openWebview();
[DllImport("__Internal")]
public static extern void showGameA(bool flag);
}