提交工程

This commit is contained in:
2026-05-20 12:01:19 +08:00
commit e0ddde0393
5502 changed files with 596320 additions and 0 deletions
@@ -0,0 +1,29 @@
#if UNITY_IOS
using System.Runtime.InteropServices;
/// <summary>
/// This class has been deprecated and will be removed in a future release
/// </summary>
public class MaxUserServiceiOS
{
private static readonly MaxUserServiceiOS _instance = new MaxUserServiceiOS();
public static MaxUserServiceiOS Instance
{
get { return _instance; }
}
[System.Obsolete("This version of the iOS consent flow has been deprecated as of MAX Unity Plugin v4.0.0 + iOS SDK v7.0.0, please refer to our documentation for enabling the new consent flow.")]
public void PreloadConsentDialog() {}
[DllImport("__Internal")]
private static extern void _MaxShowConsentDialog();
[System.Obsolete("This version of the iOS consent flow has been deprecated as of MAX Unity Plugin v4.0.0 + iOS SDK v7.0.0, please refer to our documentation for enabling the new consent flow.")]
public void ShowConsentDialog()
{
_MaxShowConsentDialog();
}
}
#endif