a
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
|
||||
namespace Cpp2IlInjected
|
||||
{
|
||||
// Token: 0x02000004 RID: 4
|
||||
internal class AddressAttribute : Attribute
|
||||
{
|
||||
// Token: 0x04000001 RID: 1
|
||||
public string RVA;
|
||||
|
||||
// Token: 0x04000002 RID: 2
|
||||
public string Offset;
|
||||
|
||||
// Token: 0x04000003 RID: 3
|
||||
public string VA;
|
||||
|
||||
// Token: 0x04000004 RID: 4
|
||||
public string Slot;
|
||||
}
|
||||
}
|
||||
+14
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
|
||||
namespace Cpp2IlInjected
|
||||
{
|
||||
// Token: 0x02000009 RID: 9
|
||||
internal class AnalysisFailedException : Exception
|
||||
{
|
||||
// Token: 0x06000013 RID: 19 RVA: 0x000020A2 File Offset: 0x000002A2
|
||||
public AnalysisFailedException(string message)
|
||||
: base(message)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
|
||||
namespace Cpp2IlInjected
|
||||
{
|
||||
// Token: 0x02000006 RID: 6
|
||||
internal class AttributeAttribute : Attribute
|
||||
{
|
||||
// Token: 0x04000006 RID: 6
|
||||
public string Name;
|
||||
|
||||
// Token: 0x04000007 RID: 7
|
||||
public string RVA;
|
||||
|
||||
// Token: 0x04000008 RID: 8
|
||||
public string Offset;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
using System;
|
||||
|
||||
namespace Cpp2IlInjected
|
||||
{
|
||||
// Token: 0x02000005 RID: 5
|
||||
internal class FieldOffsetAttribute : Attribute
|
||||
{
|
||||
// Token: 0x04000005 RID: 5
|
||||
public string Offset;
|
||||
}
|
||||
}
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
using System;
|
||||
|
||||
namespace Cpp2IlInjected
|
||||
{
|
||||
// Token: 0x02000007 RID: 7
|
||||
internal class MetadataOffsetAttribute : Attribute
|
||||
{
|
||||
// Token: 0x04000009 RID: 9
|
||||
public string Offset;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
using System;
|
||||
|
||||
namespace Cpp2IlInjected
|
||||
{
|
||||
// Token: 0x02000008 RID: 8
|
||||
internal class TokenAttribute : Attribute
|
||||
{
|
||||
// Token: 0x0400000A RID: 10
|
||||
public string Token;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: AssemblyVersion("0.0.0.0")]
|
||||
+73
@@ -0,0 +1,73 @@
|
||||
<?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>{2D4E062A-048A-43C7-9D34-B845ECC95B0E}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<RootNamespace>UnityEngine.UnityWebRequestAssetBundleModule</RootNamespace>
|
||||
<AssemblyName>UnityEngine.UnityWebRequestAssetBundleModule</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\Networking\DownloadHandlerAssetBundle.cs" />
|
||||
<Compile Include="UnityEngine\Networking\UnityWebRequestAssetBundle.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\mscorlib\mscorlib.csproj">
|
||||
<Project>{2d4e062a-048a-43c7-9d34-b845ecc95a9d}</Project>
|
||||
<Name>mscorlib</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\UnityEngine.AssetBundleModule\UnityEngine.AssetBundleModule.csproj">
|
||||
<Project>{2d4e062a-048a-43c7-9d34-b845ecc95af1}</Project>
|
||||
<Name>UnityEngine.AssetBundleModule</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\UnityEngine.CoreModule\UnityEngine.CoreModule.csproj">
|
||||
<Project>{2d4e062a-048a-43c7-9d34-b845ecc95af4}</Project>
|
||||
<Name>UnityEngine.CoreModule</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\UnityEngine.SharedInternalsModule\UnityEngine.SharedInternalsModule.csproj">
|
||||
<Project>{2d4e062a-048a-43c7-9d34-b845ecc95b02}</Project>
|
||||
<Name>UnityEngine.SharedInternalsModule</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\UnityEngine.UnityWebRequestModule\UnityEngine.UnityWebRequestModule.csproj">
|
||||
<Project>{2d4e062a-048a-43c7-9d34-b845ecc95b10}</Project>
|
||||
<Name>UnityEngine.UnityWebRequestModule</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
||||
+95
@@ -0,0 +1,95 @@
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
using Cpp2IlInjected;
|
||||
using UnityEngine.Bindings;
|
||||
|
||||
namespace UnityEngine.Networking
|
||||
{
|
||||
// Token: 0x02000003 RID: 3
|
||||
[Token(Token = "0x2000003")]
|
||||
[NativeHeader("Modules/UnityWebRequestAssetBundle/Public/DownloadHandlerAssetBundle.h")]
|
||||
[StructLayout(0)]
|
||||
public sealed class DownloadHandlerAssetBundle : DownloadHandler
|
||||
{
|
||||
// Token: 0x06000004 RID: 4 RVA: 0x00002054 File Offset: 0x00000254
|
||||
[Token(Token = "0x6000004")]
|
||||
[Address(RVA = "0x74F110", Offset = "0x74DF10", VA = "0x18074F110")]
|
||||
private static IntPtr Create(DownloadHandlerAssetBundle obj, string url, uint crc)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
// Token: 0x06000005 RID: 5 RVA: 0x0000206C File Offset: 0x0000026C
|
||||
[Token(Token = "0x6000005")]
|
||||
[Address(RVA = "0x74F0A0", Offset = "0x74DEA0", VA = "0x18074F0A0")]
|
||||
private static IntPtr CreateCached(DownloadHandlerAssetBundle obj, string url, string name, Hash128 hash, uint crc)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
// Token: 0x06000006 RID: 6 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x6000006")]
|
||||
[Address(RVA = "0x74F2A0", Offset = "0x74E0A0", VA = "0x18074F2A0")]
|
||||
private void InternalCreateAssetBundle(string url, uint crc)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06000007 RID: 7 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x6000007")]
|
||||
[Address(RVA = "0x74F230", Offset = "0x74E030", VA = "0x18074F230")]
|
||||
private void InternalCreateAssetBundleCached(string url, string name, Hash128 hash, uint crc)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06000008 RID: 8 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x6000008")]
|
||||
[Address(RVA = "0x74F300", Offset = "0x74E100", VA = "0x18074F300")]
|
||||
public DownloadHandlerAssetBundle(string url, uint crc)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06000009 RID: 9 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x6000009")]
|
||||
[Address(RVA = "0x74F360", Offset = "0x74E160", VA = "0x18074F360")]
|
||||
public DownloadHandlerAssetBundle(string url, Hash128 hash, uint crc)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x0600000A RID: 10 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x600000A")]
|
||||
[Address(RVA = "0x74F170", Offset = "0x74DF70", VA = "0x18074F170", Slot = "5")]
|
||||
protected override byte[] GetData()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x0600000B RID: 11 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x600000B")]
|
||||
[Address(RVA = "0x74F1D0", Offset = "0x74DFD0", VA = "0x18074F1D0", Slot = "6")]
|
||||
protected override string GetText()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x17000001 RID: 1
|
||||
// (get) Token: 0x0600000C RID: 12 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000001")]
|
||||
public AssetBundle assetBundle
|
||||
{
|
||||
[Token(Token = "0x600000C")]
|
||||
[Address(RVA = "0x74F400", Offset = "0x74E200", VA = "0x18074F400")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x0600000D RID: 13 RVA: 0x00002084 File Offset: 0x00000284
|
||||
[Token(Token = "0x600000D")]
|
||||
[Address(RVA = "0x74F030", Offset = "0x74DE30", VA = "0x18074F030")]
|
||||
private static IntPtr CreateCached_Injected(DownloadHandlerAssetBundle obj, string url, string name, ref Hash128 hash, uint crc)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
+34
@@ -0,0 +1,34 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace UnityEngine.Networking
|
||||
{
|
||||
// Token: 0x02000002 RID: 2
|
||||
[Token(Token = "0x2000002")]
|
||||
public static class UnityWebRequestAssetBundle
|
||||
{
|
||||
// Token: 0x06000001 RID: 1 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000001")]
|
||||
[Address(RVA = "0x74F440", Offset = "0x74E240", VA = "0x18074F440")]
|
||||
public static UnityWebRequest GetAssetBundle(string uri)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x06000002 RID: 2 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000002")]
|
||||
[Address(RVA = "0x74F600", Offset = "0x74E400", VA = "0x18074F600")]
|
||||
public static UnityWebRequest GetAssetBundle(string uri, uint crc)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x06000003 RID: 3 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000003")]
|
||||
[Address(RVA = "0x74F500", Offset = "0x74E300", VA = "0x18074F500")]
|
||||
public static UnityWebRequest GetAssetBundle(string uri, Hash128 hash, uint crc = 0U)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user