Files
RedHotRoast-ios/Assets/Scripts/BrigdeIOS.cs
T

19 lines
627 B
C#
Raw Normal View History

2026-04-22 09:52:55 +08:00
using System.Runtime.InteropServices;
public class BrigdeIOS
{
2026-04-22 09:52:55 +08:00
[DllImport("__Internal")]
public static extern void DakaiACT();
[DllImport("__Internal")]
public static extern void ShezhiACT(bool though);
2026-04-22 09:52:55 +08:00
[DllImport("__Internal")]
public static extern void copyText(string text);
[DllImport("__Internal")]
public static extern void SaveVideoWithCustomDate(string videoPath);
[DllImport("__Internal")]
public static extern void SaveImageWithCustomDate(string imagePath);
[DllImport("__Internal")]
public static extern void TrackProduct(string eventName, string dictionaryJson);
2026-04-22 09:52:55 +08:00
}