71 lines
2.0 KiB
C#
71 lines
2.0 KiB
C#
using System;
|
|
using System.Runtime.CompilerServices;
|
|
using UnityEngine.Scripting;
|
|
|
|
namespace UnityEngine.Advertisements
|
|
{
|
|
// Token: 0x020002E0 RID: 736
|
|
internal class UnityAdsSettings
|
|
{
|
|
// Token: 0x17000AFC RID: 2812
|
|
// (get) Token: 0x0600306E RID: 12398
|
|
// (set) Token: 0x0600306F RID: 12399
|
|
[ThreadAndSerializationSafe]
|
|
public static extern bool enabled
|
|
{
|
|
[GeneratedByOldBindingsGenerator]
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
get;
|
|
[GeneratedByOldBindingsGenerator]
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
set;
|
|
}
|
|
|
|
// Token: 0x06003070 RID: 12400
|
|
[GeneratedByOldBindingsGenerator]
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
public static extern bool IsPlatformEnabled(RuntimePlatform platform);
|
|
|
|
// Token: 0x06003071 RID: 12401
|
|
[GeneratedByOldBindingsGenerator]
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
public static extern void SetPlatformEnabled(RuntimePlatform platform, bool value);
|
|
|
|
// Token: 0x17000AFD RID: 2813
|
|
// (get) Token: 0x06003072 RID: 12402
|
|
// (set) Token: 0x06003073 RID: 12403
|
|
public static extern bool initializeOnStartup
|
|
{
|
|
[GeneratedByOldBindingsGenerator]
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
get;
|
|
[GeneratedByOldBindingsGenerator]
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
set;
|
|
}
|
|
|
|
// Token: 0x17000AFE RID: 2814
|
|
// (get) Token: 0x06003074 RID: 12404
|
|
// (set) Token: 0x06003075 RID: 12405
|
|
public static extern bool testMode
|
|
{
|
|
[GeneratedByOldBindingsGenerator]
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
get;
|
|
[GeneratedByOldBindingsGenerator]
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
set;
|
|
}
|
|
|
|
// Token: 0x06003076 RID: 12406
|
|
[GeneratedByOldBindingsGenerator]
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
public static extern string GetGameId(RuntimePlatform platform);
|
|
|
|
// Token: 0x06003077 RID: 12407
|
|
[GeneratedByOldBindingsGenerator]
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
public static extern void SetGameId(RuntimePlatform platform, string gameId);
|
|
}
|
|
}
|