76 lines
1.9 KiB
C#
76 lines
1.9 KiB
C#
using System;
|
|
using System.Runtime.CompilerServices;
|
|
using UnityEngine.Scripting;
|
|
|
|
namespace UnityEngine.Connect
|
|
{
|
|
// Token: 0x020002DD RID: 733
|
|
internal class UnityConnectSettings
|
|
{
|
|
// Token: 0x17000AF7 RID: 2807
|
|
// (get) Token: 0x06003050 RID: 12368
|
|
// (set) Token: 0x06003051 RID: 12369
|
|
public static extern bool enabled
|
|
{
|
|
[GeneratedByOldBindingsGenerator]
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
get;
|
|
[GeneratedByOldBindingsGenerator]
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
set;
|
|
}
|
|
|
|
// Token: 0x17000AF8 RID: 2808
|
|
// (get) Token: 0x06003052 RID: 12370
|
|
// (set) Token: 0x06003053 RID: 12371
|
|
public static extern bool testMode
|
|
{
|
|
[GeneratedByOldBindingsGenerator]
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
get;
|
|
[GeneratedByOldBindingsGenerator]
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
set;
|
|
}
|
|
|
|
// Token: 0x17000AF9 RID: 2809
|
|
// (get) Token: 0x06003054 RID: 12372
|
|
// (set) Token: 0x06003055 RID: 12373
|
|
public static extern string testEventUrl
|
|
{
|
|
[GeneratedByOldBindingsGenerator]
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
get;
|
|
[GeneratedByOldBindingsGenerator]
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
set;
|
|
}
|
|
|
|
// Token: 0x17000AFA RID: 2810
|
|
// (get) Token: 0x06003056 RID: 12374
|
|
// (set) Token: 0x06003057 RID: 12375
|
|
public static extern string testConfigUrl
|
|
{
|
|
[GeneratedByOldBindingsGenerator]
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
get;
|
|
[GeneratedByOldBindingsGenerator]
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
set;
|
|
}
|
|
|
|
// Token: 0x17000AFB RID: 2811
|
|
// (get) Token: 0x06003058 RID: 12376
|
|
// (set) Token: 0x06003059 RID: 12377
|
|
public static extern int testInitMode
|
|
{
|
|
[GeneratedByOldBindingsGenerator]
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
get;
|
|
[GeneratedByOldBindingsGenerator]
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
set;
|
|
}
|
|
}
|
|
}
|