oh dear
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
|
||||
namespace Cpp2IlInjected
|
||||
{
|
||||
// Token: 0x0200000F RID: 15
|
||||
internal class AddressAttribute : Attribute
|
||||
{
|
||||
// Token: 0x04000023 RID: 35
|
||||
public string RVA;
|
||||
|
||||
// Token: 0x04000024 RID: 36
|
||||
public string Offset;
|
||||
|
||||
// Token: 0x04000025 RID: 37
|
||||
public string VA;
|
||||
|
||||
// Token: 0x04000026 RID: 38
|
||||
public string Slot;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
|
||||
namespace Cpp2IlInjected
|
||||
{
|
||||
// Token: 0x02000014 RID: 20
|
||||
internal class AnalysisFailedException : Exception
|
||||
{
|
||||
// Token: 0x0600002A RID: 42 RVA: 0x00002192 File Offset: 0x00000392
|
||||
public AnalysisFailedException(string message)
|
||||
: base(message)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
|
||||
namespace Cpp2IlInjected
|
||||
{
|
||||
// Token: 0x02000011 RID: 17
|
||||
internal class AttributeAttribute : Attribute
|
||||
{
|
||||
// Token: 0x04000028 RID: 40
|
||||
public string Name;
|
||||
|
||||
// Token: 0x04000029 RID: 41
|
||||
public string RVA;
|
||||
|
||||
// Token: 0x0400002A RID: 42
|
||||
public string Offset;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
using System;
|
||||
|
||||
namespace Cpp2IlInjected
|
||||
{
|
||||
// Token: 0x02000010 RID: 16
|
||||
internal class FieldOffsetAttribute : Attribute
|
||||
{
|
||||
// Token: 0x04000027 RID: 39
|
||||
public string Offset;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
using System;
|
||||
|
||||
namespace Cpp2IlInjected
|
||||
{
|
||||
// Token: 0x02000012 RID: 18
|
||||
internal class MetadataOffsetAttribute : Attribute
|
||||
{
|
||||
// Token: 0x0400002B RID: 43
|
||||
public string Offset;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
using System;
|
||||
|
||||
namespace Cpp2IlInjected
|
||||
{
|
||||
// Token: 0x02000013 RID: 19
|
||||
internal class TokenAttribute : Attribute
|
||||
{
|
||||
// Token: 0x0400002C RID: 44
|
||||
public string Token;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: AssemblyVersion("0.0.0.0")]
|
||||
@@ -0,0 +1,72 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{6964D65D-0CBB-4C42-A997-2E6589744D95}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<RootNamespace>UnityEngine.UnityAnalyticsModule</RootNamespace>
|
||||
<AssemblyName>UnityEngine.UnityAnalyticsModule</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<NoStdLib>true</NoStdLib>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<NoStdLib>true</NoStdLib>
|
||||
</PropertyGroup>
|
||||
<ItemGroup />
|
||||
<ItemGroup>
|
||||
<AppDesigner Include="Properties\" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Cpp2IlInjected\AddressAttribute.cs" />
|
||||
<Compile Include="Cpp2IlInjected\AnalysisFailedException.cs" />
|
||||
<Compile Include="Cpp2IlInjected\AttributeAttribute.cs" />
|
||||
<Compile Include="Cpp2IlInjected\FieldOffsetAttribute.cs" />
|
||||
<Compile Include="Cpp2IlInjected\MetadataOffsetAttribute.cs" />
|
||||
<Compile Include="Cpp2IlInjected\TokenAttribute.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="UnityEngine\Analytics\Analytics.cs" />
|
||||
<Compile Include="UnityEngine\Analytics\AnalyticsResult.cs" />
|
||||
<Compile Include="UnityEngine\Analytics\AnalyticsSessionInfo.cs" />
|
||||
<Compile Include="UnityEngine\Analytics\AnalyticsSessionState.cs" />
|
||||
<Compile Include="UnityEngine\Analytics\ContinuousEvent.cs" />
|
||||
<Compile Include="UnityEngine\Analytics\CustomEventData.cs" />
|
||||
<Compile Include="UnityEngine\RemoteConfigSettings.cs" />
|
||||
<Compile Include="UnityEngine\RemoteConfigSettingsHelper.cs" />
|
||||
<Compile Include="UnityEngine\RemoteSettings.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\mscorlib\mscorlib.csproj">
|
||||
<Project>{6964d65d-0cbb-4c42-a997-2e6589744d25}</Project>
|
||||
<Name>mscorlib</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\UnityEngine.CoreModule\UnityEngine.CoreModule.csproj">
|
||||
<Project>{6964d65d-0cbb-4c42-a997-2e6589744d7c}</Project>
|
||||
<Name>UnityEngine.CoreModule</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\UnityEngine.SharedInternalsModule\UnityEngine.SharedInternalsModule.csproj">
|
||||
<Project>{6964d65d-0cbb-4c42-a997-2e6589744d8a}</Project>
|
||||
<Name>UnityEngine.SharedInternalsModule</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
||||
@@ -0,0 +1,52 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Runtime.InteropServices;
|
||||
using Cpp2IlInjected;
|
||||
using UnityEngine.Bindings;
|
||||
|
||||
namespace UnityEngine.Analytics
|
||||
{
|
||||
// Token: 0x0200000C RID: 12
|
||||
[Token(Token = "0x200000C")]
|
||||
[NativeHeader("Modules/UnityAnalytics/Public/Events/UserCustomEvent.h")]
|
||||
[NativeHeader("Modules/UnityAnalytics/Public/UnityAnalytics.h")]
|
||||
[NativeHeader("Modules/UnityConnect/UnityConnectSettings.h")]
|
||||
[StructLayout(0)]
|
||||
public static class Analytics
|
||||
{
|
||||
// Token: 0x06000013 RID: 19 RVA: 0x00002054 File Offset: 0x00000254
|
||||
[Token(Token = "0x6000013")]
|
||||
[Address(RVA = "0x746480", Offset = "0x745280", VA = "0x180746480")]
|
||||
[ThreadSafe]
|
||||
internal static bool IsInitialized()
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
// Token: 0x06000014 RID: 20 RVA: 0x0000206C File Offset: 0x0000026C
|
||||
[Token(Token = "0x6000014")]
|
||||
[Address(RVA = "0x7464B0", Offset = "0x7452B0", VA = "0x1807464B0")]
|
||||
[StaticAccessor("GetUnityAnalytics()", StaticAccessorType.Dot)]
|
||||
private static AnalyticsResult SendCustomEventName(string customEventName)
|
||||
{
|
||||
return AnalyticsResult.Ok;
|
||||
}
|
||||
|
||||
// Token: 0x06000015 RID: 21 RVA: 0x00002084 File Offset: 0x00000284
|
||||
[Token(Token = "0x6000015")]
|
||||
[Address(RVA = "0x7464F0", Offset = "0x7452F0", VA = "0x1807464F0")]
|
||||
[StaticAccessor("GetUnityAnalytics()", StaticAccessorType.Dot)]
|
||||
private static AnalyticsResult SendCustomEvent(CustomEventData eventData)
|
||||
{
|
||||
return AnalyticsResult.Ok;
|
||||
}
|
||||
|
||||
// Token: 0x06000016 RID: 22 RVA: 0x0000209C File Offset: 0x0000029C
|
||||
[Token(Token = "0x6000016")]
|
||||
[Address(RVA = "0x746280", Offset = "0x745080", VA = "0x180746280")]
|
||||
public static AnalyticsResult CustomEvent(string customEventName, IDictionary<string, object> eventData)
|
||||
{
|
||||
return AnalyticsResult.Ok;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace UnityEngine.Analytics
|
||||
{
|
||||
// Token: 0x0200000D RID: 13
|
||||
[Token(Token = "0x200000D")]
|
||||
public enum AnalyticsResult
|
||||
{
|
||||
// Token: 0x0400001A RID: 26
|
||||
[Token(Token = "0x400001A")]
|
||||
Ok,
|
||||
// Token: 0x0400001B RID: 27
|
||||
[Token(Token = "0x400001B")]
|
||||
NotInitialized,
|
||||
// Token: 0x0400001C RID: 28
|
||||
[Token(Token = "0x400001C")]
|
||||
AnalyticsDisabled,
|
||||
// Token: 0x0400001D RID: 29
|
||||
[Token(Token = "0x400001D")]
|
||||
TooManyItems,
|
||||
// Token: 0x0400001E RID: 30
|
||||
[Token(Token = "0x400001E")]
|
||||
SizeLimitReached,
|
||||
// Token: 0x0400001F RID: 31
|
||||
[Token(Token = "0x400001F")]
|
||||
TooManyRequests,
|
||||
// Token: 0x04000020 RID: 32
|
||||
[Token(Token = "0x4000020")]
|
||||
InvalidData,
|
||||
// Token: 0x04000021 RID: 33
|
||||
[Token(Token = "0x4000021")]
|
||||
UnsupportedPlatform
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,55 @@
|
||||
using System;
|
||||
using System.Diagnostics;
|
||||
using System.Runtime.CompilerServices;
|
||||
using Cpp2IlInjected;
|
||||
using UnityEngine.Bindings;
|
||||
using UnityEngine.Scripting;
|
||||
|
||||
namespace UnityEngine.Analytics
|
||||
{
|
||||
// Token: 0x02000009 RID: 9
|
||||
[Token(Token = "0x2000009")]
|
||||
[RequiredByNativeCode]
|
||||
[NativeHeader("Modules/UnityAnalytics/Public/UnityAnalytics.h")]
|
||||
[NativeHeader("UnityAnalyticsScriptingClasses.h")]
|
||||
public static class AnalyticsSessionInfo
|
||||
{
|
||||
// Token: 0x06000009 RID: 9 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000009")]
|
||||
[Address(RVA = "0x746200", Offset = "0x745000", VA = "0x180746200")]
|
||||
[RequiredByNativeCode]
|
||||
internal static void CallSessionStateChanged(AnalyticsSessionState sessionState, long sessionId, long sessionElapsedTime, bool sessionChanged)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x0600000A RID: 10 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x600000A")]
|
||||
[Address(RVA = "0x7461A0", Offset = "0x744FA0", VA = "0x1807461A0")]
|
||||
[RequiredByNativeCode]
|
||||
internal static void CallIdentityTokenChanged(string token)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x04000017 RID: 23
|
||||
[Token(Token = "0x4000017")]
|
||||
[CompilerGenerated]
|
||||
[DebuggerBrowsable(DebuggerBrowsableState.Never)]
|
||||
private static AnalyticsSessionInfo.SessionStateChanged sessionStateChanged;
|
||||
|
||||
// Token: 0x04000018 RID: 24
|
||||
[Token(Token = "0x4000018")]
|
||||
[CompilerGenerated]
|
||||
[DebuggerBrowsable(DebuggerBrowsableState.Never)]
|
||||
private static AnalyticsSessionInfo.IdentityTokenChanged identityTokenChanged;
|
||||
|
||||
// Token: 0x0200000A RID: 10
|
||||
// (Invoke) Token: 0x0600000C RID: 12
|
||||
[Token(Token = "0x200000A")]
|
||||
public delegate void SessionStateChanged(AnalyticsSessionState sessionState, long sessionId, long sessionElapsedTime, bool sessionChanged);
|
||||
|
||||
// Token: 0x0200000B RID: 11
|
||||
// (Invoke) Token: 0x06000010 RID: 16
|
||||
[Token(Token = "0x200000B")]
|
||||
public delegate void IdentityTokenChanged(string token);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,25 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
using UnityEngine.Scripting;
|
||||
|
||||
namespace UnityEngine.Analytics
|
||||
{
|
||||
// Token: 0x02000008 RID: 8
|
||||
[Token(Token = "0x2000008")]
|
||||
[RequiredByNativeCode]
|
||||
public enum AnalyticsSessionState
|
||||
{
|
||||
// Token: 0x04000013 RID: 19
|
||||
[Token(Token = "0x4000013")]
|
||||
kSessionStopped,
|
||||
// Token: 0x04000014 RID: 20
|
||||
[Token(Token = "0x4000014")]
|
||||
kSessionStarted,
|
||||
// Token: 0x04000015 RID: 21
|
||||
[Token(Token = "0x4000015")]
|
||||
kSessionPaused,
|
||||
// Token: 0x04000016 RID: 22
|
||||
[Token(Token = "0x4000016")]
|
||||
kSessionResumed
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
using UnityEngine.Bindings;
|
||||
using UnityEngine.Internal;
|
||||
using UnityEngine.Scripting;
|
||||
|
||||
namespace UnityEngine.Analytics
|
||||
{
|
||||
// Token: 0x02000007 RID: 7
|
||||
[Token(Token = "0x2000007")]
|
||||
[RequiredByNativeCode]
|
||||
[ExcludeFromDocs]
|
||||
[NativeHeader("Modules/UnityAnalytics/ContinuousEvent/Manager.h")]
|
||||
[NativeHeader("Modules/UnityAnalytics/Public/UnityAnalytics.h")]
|
||||
public class ContinuousEvent
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,129 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Runtime.InteropServices;
|
||||
using Cpp2IlInjected;
|
||||
using UnityEngine.Bindings;
|
||||
|
||||
namespace UnityEngine.Analytics
|
||||
{
|
||||
// Token: 0x0200000E RID: 14
|
||||
[Token(Token = "0x200000E")]
|
||||
[NativeHeader("Modules/UnityAnalytics/Public/Events/UserCustomEvent.h")]
|
||||
[StructLayout(0)]
|
||||
internal class CustomEventData : IDisposable
|
||||
{
|
||||
// Token: 0x06000017 RID: 23 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000017")]
|
||||
[Address(RVA = "0x7473C0", Offset = "0x7461C0", VA = "0x1807473C0")]
|
||||
public CustomEventData(string name)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06000018 RID: 24 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000018")]
|
||||
[Address(RVA = "0x7472C0", Offset = "0x7460C0", VA = "0x1807472C0", Slot = "1")]
|
||||
protected override void Finalize()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06000019 RID: 25 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000019")]
|
||||
[Address(RVA = "0x7471E0", Offset = "0x745FE0", VA = "0x1807471E0")]
|
||||
private void Destroy()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x0600001A RID: 26 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x600001A")]
|
||||
[Address(RVA = "0x747260", Offset = "0x746060", VA = "0x180747260", Slot = "4")]
|
||||
public void Dispose()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x0600001B RID: 27 RVA: 0x000020B4 File Offset: 0x000002B4
|
||||
[Token(Token = "0x600001B")]
|
||||
[Address(RVA = "0x747330", Offset = "0x746130", VA = "0x180747330")]
|
||||
internal static IntPtr Internal_Create(CustomEventData ced, string name)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
// Token: 0x0600001C RID: 28 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x600001C")]
|
||||
[Address(RVA = "0x747380", Offset = "0x746180", VA = "0x180747380")]
|
||||
[ThreadSafe]
|
||||
internal static void Internal_Destroy(IntPtr ptr)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x0600001D RID: 29 RVA: 0x000020CC File Offset: 0x000002CC
|
||||
[Token(Token = "0x600001D")]
|
||||
[Address(RVA = "0x7470C0", Offset = "0x745EC0", VA = "0x1807470C0")]
|
||||
public bool AddString(string key, string value)
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
// Token: 0x0600001E RID: 30 RVA: 0x000020E4 File Offset: 0x000002E4
|
||||
[Token(Token = "0x600001E")]
|
||||
[Address(RVA = "0x747000", Offset = "0x745E00", VA = "0x180747000")]
|
||||
public bool AddInt32(string key, int value)
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
// Token: 0x0600001F RID: 31 RVA: 0x000020FC File Offset: 0x000002FC
|
||||
[Token(Token = "0x600001F")]
|
||||
[Address(RVA = "0x747120", Offset = "0x745F20", VA = "0x180747120")]
|
||||
public bool AddUInt32(string key, uint value)
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
// Token: 0x06000020 RID: 32 RVA: 0x00002114 File Offset: 0x00000314
|
||||
[Token(Token = "0x6000020")]
|
||||
[Address(RVA = "0x747060", Offset = "0x745E60", VA = "0x180747060")]
|
||||
public bool AddInt64(string key, long value)
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
// Token: 0x06000021 RID: 33 RVA: 0x0000212C File Offset: 0x0000032C
|
||||
[Token(Token = "0x6000021")]
|
||||
[Address(RVA = "0x747180", Offset = "0x745F80", VA = "0x180747180")]
|
||||
public bool AddUInt64(string key, ulong value)
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
// Token: 0x06000022 RID: 34 RVA: 0x00002144 File Offset: 0x00000344
|
||||
[Token(Token = "0x6000022")]
|
||||
[Address(RVA = "0x746530", Offset = "0x745330", VA = "0x180746530")]
|
||||
public bool AddBool(string key, bool value)
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
// Token: 0x06000023 RID: 35 RVA: 0x0000215C File Offset: 0x0000035C
|
||||
[Token(Token = "0x6000023")]
|
||||
[Address(RVA = "0x746FA0", Offset = "0x745DA0", VA = "0x180746FA0")]
|
||||
public bool AddDouble(string key, double value)
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
// Token: 0x06000024 RID: 36 RVA: 0x00002174 File Offset: 0x00000374
|
||||
[Token(Token = "0x6000024")]
|
||||
[Address(RVA = "0x746590", Offset = "0x745390", VA = "0x180746590")]
|
||||
public bool AddDictionary(IDictionary<string, object> eventData)
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
// Token: 0x04000022 RID: 34
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x10")]
|
||||
[Token(Token = "0x4000022")]
|
||||
[NonSerialized]
|
||||
internal IntPtr m_Ptr;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,41 @@
|
||||
using System;
|
||||
using System.Diagnostics;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Cpp2IlInjected;
|
||||
using UnityEngine.Bindings;
|
||||
using UnityEngine.Internal;
|
||||
using UnityEngine.Scripting;
|
||||
|
||||
namespace UnityEngine
|
||||
{
|
||||
// Token: 0x02000004 RID: 4
|
||||
[Token(Token = "0x2000004")]
|
||||
[ExcludeFromDocs]
|
||||
[NativeHeader("UnityAnalyticsScriptingClasses.h")]
|
||||
[NativeHeader("Modules/UnityAnalytics/RemoteSettings/RemoteSettings.h")]
|
||||
[StructLayout(0)]
|
||||
public class RemoteConfigSettings
|
||||
{
|
||||
// Token: 0x06000008 RID: 8 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000008")]
|
||||
[Address(RVA = "0x747770", Offset = "0x746570", VA = "0x180747770")]
|
||||
[RequiredByNativeCode]
|
||||
internal static void RemoteConfigSettingsUpdated(RemoteConfigSettings rcs, bool wasLastUpdatedFromServer)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x04000004 RID: 4
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x10")]
|
||||
[Token(Token = "0x4000004")]
|
||||
[NonSerialized]
|
||||
internal IntPtr m_Ptr;
|
||||
|
||||
// Token: 0x04000005 RID: 5
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x18")]
|
||||
[Token(Token = "0x4000005")]
|
||||
[CompilerGenerated]
|
||||
[DebuggerBrowsable(DebuggerBrowsableState.Never)]
|
||||
private Action<bool> Updated;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,51 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
using UnityEngine.Scripting;
|
||||
|
||||
namespace UnityEngine
|
||||
{
|
||||
// Token: 0x02000005 RID: 5
|
||||
[Token(Token = "0x2000005")]
|
||||
internal static class RemoteConfigSettingsHelper
|
||||
{
|
||||
// Token: 0x02000006 RID: 6
|
||||
[Token(Token = "0x2000006")]
|
||||
[RequiredByNativeCode]
|
||||
internal enum Tag
|
||||
{
|
||||
// Token: 0x04000007 RID: 7
|
||||
[Token(Token = "0x4000007")]
|
||||
kUnknown,
|
||||
// Token: 0x04000008 RID: 8
|
||||
[Token(Token = "0x4000008")]
|
||||
kIntVal,
|
||||
// Token: 0x04000009 RID: 9
|
||||
[Token(Token = "0x4000009")]
|
||||
kInt64Val,
|
||||
// Token: 0x0400000A RID: 10
|
||||
[Token(Token = "0x400000A")]
|
||||
kUInt64Val,
|
||||
// Token: 0x0400000B RID: 11
|
||||
[Token(Token = "0x400000B")]
|
||||
kDoubleVal,
|
||||
// Token: 0x0400000C RID: 12
|
||||
[Token(Token = "0x400000C")]
|
||||
kBoolVal,
|
||||
// Token: 0x0400000D RID: 13
|
||||
[Token(Token = "0x400000D")]
|
||||
kStringVal,
|
||||
// Token: 0x0400000E RID: 14
|
||||
[Token(Token = "0x400000E")]
|
||||
kArrayVal,
|
||||
// Token: 0x0400000F RID: 15
|
||||
[Token(Token = "0x400000F")]
|
||||
kMixedArrayVal,
|
||||
// Token: 0x04000010 RID: 16
|
||||
[Token(Token = "0x4000010")]
|
||||
kMapVal,
|
||||
// Token: 0x04000011 RID: 17
|
||||
[Token(Token = "0x4000011")]
|
||||
kMaxTags
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,63 @@
|
||||
using System;
|
||||
using System.Diagnostics;
|
||||
using System.Runtime.CompilerServices;
|
||||
using Cpp2IlInjected;
|
||||
using UnityEngine.Bindings;
|
||||
using UnityEngine.Scripting;
|
||||
|
||||
namespace UnityEngine
|
||||
{
|
||||
// Token: 0x02000002 RID: 2
|
||||
[Token(Token = "0x2000002")]
|
||||
[NativeHeader("Modules/UnityAnalytics/RemoteSettings/RemoteSettings.h")]
|
||||
[NativeHeader("UnityAnalyticsScriptingClasses.h")]
|
||||
public static class RemoteSettings
|
||||
{
|
||||
// Token: 0x06000001 RID: 1 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000001")]
|
||||
[Address(RVA = "0x7478A0", Offset = "0x7466A0", VA = "0x1807478A0")]
|
||||
[RequiredByNativeCode]
|
||||
internal static void RemoteSettingsUpdated(bool wasLastUpdatedFromServer)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06000002 RID: 2 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000002")]
|
||||
[Address(RVA = "0x7477D0", Offset = "0x7465D0", VA = "0x1807477D0")]
|
||||
[RequiredByNativeCode]
|
||||
internal static void RemoteSettingsBeforeFetchFromServer()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06000003 RID: 3 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000003")]
|
||||
[Address(RVA = "0x747820", Offset = "0x746620", VA = "0x180747820")]
|
||||
[RequiredByNativeCode]
|
||||
internal static void RemoteSettingsUpdateCompleted(bool wasLastUpdatedFromServer, bool settingsChanged, int response)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x04000001 RID: 1
|
||||
[Token(Token = "0x4000001")]
|
||||
[CompilerGenerated]
|
||||
[DebuggerBrowsable(DebuggerBrowsableState.Never)]
|
||||
private static RemoteSettings.UpdatedEventHandler Updated;
|
||||
|
||||
// Token: 0x04000002 RID: 2
|
||||
[Token(Token = "0x4000002")]
|
||||
[CompilerGenerated]
|
||||
[DebuggerBrowsable(DebuggerBrowsableState.Never)]
|
||||
private static Action BeforeFetchFromServer;
|
||||
|
||||
// Token: 0x04000003 RID: 3
|
||||
[Token(Token = "0x4000003")]
|
||||
[CompilerGenerated]
|
||||
[DebuggerBrowsable(DebuggerBrowsableState.Never)]
|
||||
private static Action<bool, bool, int> Completed;
|
||||
|
||||
// Token: 0x02000003 RID: 3
|
||||
// (Invoke) Token: 0x06000005 RID: 5
|
||||
[Token(Token = "0x2000003")]
|
||||
public delegate void UpdatedEventHandler();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user