16 lines
409 B
C#
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);
|
|
}
|