[add] first
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
#pragma once
|
||||
|
||||
// Enabling this will force app to do a hard crash instead of a nice exit when UnhandledException
|
||||
// is thrown. This will force iOS to generate a standard crash report, that can be submitted to
|
||||
// iTunes by app users and inspected by developers.
|
||||
#define ENABLE_IOS_CRASH_REPORTING 1
|
||||
|
||||
// Enabling this will add a custom Objective-C Uncaught Exception handler, which will print out
|
||||
// exception information to console.
|
||||
#define ENABLE_OBJC_UNCAUGHT_EXCEPTION_HANDLER 1
|
||||
|
||||
// Enable custom crash reporter to capture crashes. Crash logs will be available to scripts via
|
||||
// CrashReport API.
|
||||
#define ENABLE_CUSTOM_CRASH_REPORTER 1
|
||||
|
||||
// Enable submission of custom crash reports to Unity servers. This will enable custom crash
|
||||
// reporter.
|
||||
#define ENABLE_CRASH_REPORT_SUBMISSION 1
|
||||
|
||||
|
||||
#if ENABLE_CRASH_REPORT_SUBMISSION && !ENABLE_CUSTOM_CRASH_REPORTER
|
||||
#undef ENABLE_CUSTOM_CRASH_REPORTER
|
||||
#define ENABLE_CUSTOM_CRASH_REPORTER 1
|
||||
#endif
|
||||
|
||||
#if PLATFORM_TVOS
|
||||
#undef ENABLE_CUSTOM_CRASH_REPORTER
|
||||
#define ENABLE_CUSTOM_CRASH_REPORTER 1
|
||||
#endif
|
||||
|
||||
extern "C" void UnityInstallPostCrashCallback();
|
||||
void InitCrashHandling();
|
||||
@@ -0,0 +1,121 @@
|
||||
#import "PLCrashReporter.h"
|
||||
#import "CrashReporter.h"
|
||||
|
||||
#include "UndefinePlatforms.h"
|
||||
#include <mach-o/ldsyms.h>
|
||||
#include "RedefinePlatforms.h"
|
||||
|
||||
extern "C" NSString* UnityGetCrashReportsPath();
|
||||
|
||||
static NSUncaughtExceptionHandler* gsCrashReporterUEHandler = NULL;
|
||||
|
||||
static decltype(_mh_execute_header) * sExecuteHeader = NULL;
|
||||
extern "C" void UnitySetExecuteMachHeader(const decltype(_mh_execute_header)* header)
|
||||
{
|
||||
sExecuteHeader = header;
|
||||
}
|
||||
|
||||
extern "C" const decltype(_mh_execute_header) * UnityGetExecuteMachHeader() {
|
||||
return sExecuteHeader;
|
||||
}
|
||||
|
||||
static void SavePendingCrashReport()
|
||||
{
|
||||
if (![[UnityPLCrashReporter sharedReporter] hasPendingCrashReport])
|
||||
return;
|
||||
|
||||
NSFileManager *fm = [NSFileManager defaultManager];
|
||||
NSError *error;
|
||||
|
||||
if (![fm createDirectoryAtPath: UnityGetCrashReportsPath() withIntermediateDirectories: YES attributes: nil error: &error])
|
||||
{
|
||||
::printf("CrashReporter: could not create crash report directory: %s\n", [[error localizedDescription] UTF8String]);
|
||||
return;
|
||||
}
|
||||
|
||||
NSData *data = [[UnityPLCrashReporter sharedReporter] loadPendingCrashReportDataAndReturnError: &error];
|
||||
if (data == nil)
|
||||
{
|
||||
::printf("CrashReporter: failed to load crash report data: %s\n", [[error localizedDescription] UTF8String]);
|
||||
return;
|
||||
}
|
||||
|
||||
NSString* file = [UnityGetCrashReportsPath() stringByAppendingPathComponent: @"crash-"];
|
||||
unsigned long long seconds = (unsigned long long)[[NSDate date] timeIntervalSince1970];
|
||||
file = [file stringByAppendingString: [NSString stringWithFormat: @"%llu", seconds]];
|
||||
file = [file stringByAppendingString: @".plcrash"];
|
||||
if ([data writeToFile: file atomically: YES])
|
||||
{
|
||||
::printf("CrashReporter: saved pending crash report.\n");
|
||||
if (![[UnityPLCrashReporter sharedReporter] purgePendingCrashReportAndReturnError: &error])
|
||||
{
|
||||
::printf("CrashReporter: couldn't remove pending report: %s\n", [[error localizedDescription] UTF8String]);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
::printf("CrashReporter: couldn't save crash report.\n");
|
||||
}
|
||||
|
||||
// Now copy out a pending version that we can delete if/when we send it
|
||||
file = [UnityGetCrashReportsPath() stringByAppendingPathComponent: @"crash-pending.plcrash"];
|
||||
if ([data writeToFile: file atomically: YES])
|
||||
{
|
||||
::printf("CrashReporter: saved copy of pending crash report.\n");
|
||||
}
|
||||
else
|
||||
{
|
||||
::printf("CrashReporter: couldn't save copy of pending crash report.\n");
|
||||
}
|
||||
}
|
||||
|
||||
static void InitCrashReporter()
|
||||
{
|
||||
NSError *error;
|
||||
|
||||
UnityInstallPostCrashCallback();
|
||||
if ([[UnityPLCrashReporter sharedReporter] enableCrashReporterAndReturnError: &error])
|
||||
::printf("CrashReporter: initialized\n");
|
||||
else
|
||||
NSLog(@"CrashReporter: could not enable crash reporter: %@", error);
|
||||
|
||||
SavePendingCrashReport();
|
||||
}
|
||||
|
||||
static void UncaughtExceptionHandler(NSException *exception)
|
||||
{
|
||||
NSLog(@"Uncaught exception: %@: %@\n%@", [exception name], [exception reason], [exception callStackSymbols]);
|
||||
if (gsCrashReporterUEHandler)
|
||||
gsCrashReporterUEHandler(exception);
|
||||
}
|
||||
|
||||
static void InitObjCUEHandler()
|
||||
{
|
||||
// Crash reporter sets its own handler, so we have to save it and call it manually
|
||||
gsCrashReporterUEHandler = NSGetUncaughtExceptionHandler();
|
||||
NSSetUncaughtExceptionHandler(&UncaughtExceptionHandler);
|
||||
}
|
||||
|
||||
void InitCrashHandling()
|
||||
{
|
||||
#if ENABLE_CUSTOM_CRASH_REPORTER
|
||||
InitCrashReporter();
|
||||
#endif
|
||||
|
||||
#if ENABLE_OBJC_UNCAUGHT_EXCEPTION_HANDLER
|
||||
InitObjCUEHandler();
|
||||
#endif
|
||||
}
|
||||
|
||||
// This function will be called when AppDomain.CurrentDomain.UnhandledException event is triggered.
|
||||
// When running on device the app will do a hard crash and it will generate a crash log.
|
||||
extern "C" void CrashedCheckBelowForHintsWhy()
|
||||
{
|
||||
#if ENABLE_IOS_CRASH_REPORTING || ENABLE_CUSTOM_CRASH_REPORTER
|
||||
// Make app crash hard here
|
||||
__builtin_trap();
|
||||
|
||||
// Just in case above doesn't work
|
||||
abort();
|
||||
#endif
|
||||
}
|
||||
@@ -0,0 +1,252 @@
|
||||
// ? TODO: Pavell merge with TrampolineInterface.h to have singe source of truth for a function definitions
|
||||
|
||||
UnityExternCall(bool, UnityiOS81orNewer);
|
||||
UnityExternCall(bool, UnityiOS82orNewer);
|
||||
UnityExternCall(bool, UnityiOS90orNewer);
|
||||
UnityExternCall(bool, UnityiOS91orNewer);
|
||||
UnityExternCall(bool, UnityiOS100orNewer);
|
||||
UnityExternCall(bool, UnityiOS101orNewer);
|
||||
UnityExternCall(bool, UnityiOS102orNewer);
|
||||
UnityExternCall(bool, UnityiOS103orNewer);
|
||||
UnityExternCall(bool, UnityiOS110orNewer);
|
||||
UnityExternCall(bool, UnityiOS111orNewer);
|
||||
UnityExternCall(bool, UnityiOS112orNewer);
|
||||
UnityExternCall(bool, UnityiOS130orNewer);
|
||||
UnityExternCall(bool, UnityiOS140orNewer);
|
||||
|
||||
// CrashReporter.mm
|
||||
UnityExternCall(void, CrashedCheckBelowForHintsWhy);
|
||||
UnityExternCall(const decltype(_mh_execute_header)*, UnityGetExecuteMachHeader);
|
||||
|
||||
// iPhone_Sensors.mm
|
||||
UnityExternCall(void, UnityInitJoysticks);
|
||||
UnityExternCall(void, UnityCoreMotionStart);
|
||||
UnityExternCall(void, UnityCoreMotionStop);
|
||||
UnityExternCall(void, UnityUpdateAccelerometerData);
|
||||
UnityExternCall(int, UnityIsGyroEnabled, int);
|
||||
UnityExternCall(int, UnityIsGyroAvailable);
|
||||
UnityExternCall(void, UnityUpdateGyroData);
|
||||
UnityExternCall(void, UnitySetGyroUpdateInterval, int, float);
|
||||
UnityExternCall(float, UnityGetGyroUpdateInterval, int);
|
||||
UnityExternCall(void, UnityUpdateJoystickData);
|
||||
UnityExternCall(NSArray*, UnityGetJoystickNames);
|
||||
UnityExternCall(void, UnityGetJoystickAxisName, int, int, char*, int);
|
||||
UnityExternCall(void, UnityGetNiceKeyname, int, char*, int);
|
||||
UnityExternCall(bool, IsCompensatingSensors);
|
||||
UnityExternCall(void, SetCompensatingSensors, bool);
|
||||
UnityExternCall(int, UnityMaxQueuedAccelerationEvents);
|
||||
|
||||
// UnityAppController.mm
|
||||
UnityExternCall(UIViewController*, UnityGetGLViewController);
|
||||
UnityExternCall(UIView*, UnityGetGLView);
|
||||
UnityExternCall(UIWindow*, UnityGetMainWindow);
|
||||
UnityExternCall(void, UnityRequestQuit);
|
||||
UnityExternCall(void, UnityDestroyDisplayLink);
|
||||
UnityExternCall(void, UnityCleanupTrampoline);
|
||||
|
||||
// UnityAppController+Rendering.mm
|
||||
UnityExternCall(void, UnityGfxInitedCallback);
|
||||
UnityExternCall(void, UnityPresentContextCallback, UnityFrameStats const*);
|
||||
UnityExternCall(void, UnityFramerateChangeCallback, int);
|
||||
UnityExternCall(int, UnitySelectedRenderingAPI);
|
||||
|
||||
UnityExternCall(NSBundle*, UnityGetMetalBundle);
|
||||
UnityExternCall(MTLDeviceRef, UnityGetMetalDevice);
|
||||
UnityExternCall(MTLCommandQueueRef, UnityGetMetalCommandQueue);
|
||||
UnityExternCall(MTLCommandQueueRef, UnityGetMetalDrawableCommandQueue);
|
||||
|
||||
UnityExternCall(RenderSurfaceBase*, UnityBackbufferColor);
|
||||
UnityExternCall(RenderSurfaceBase*, UnityBackbufferDepth);
|
||||
UnityExternCall(void, DisplayManagerEndFrameRendering);
|
||||
UnityExternCall(void, UnityPrepareScreenshot);
|
||||
|
||||
// Unity/MetalHelper.mm
|
||||
UnityExternCall(MTLTextureRef, AcquireDrawableMTL, UnityDisplaySurfaceMTL*);
|
||||
UnityExternCall(int, UnityCommandQueueMaxCommandBufferCountMTL);
|
||||
UnityExternCall(void, SetDrawableSizeMTL, UnityDisplaySurfaceMTL*, int, int);
|
||||
|
||||
// UI/ActivityIndicator.mm
|
||||
UnityExternCall(void, UnityStartActivityIndicator);
|
||||
UnityExternCall(void, UnityStopActivityIndicator);
|
||||
|
||||
// UI/Keyboard.mm
|
||||
UnityExternCall(void, UnityKeyboard_Create, unsigned, int, int , int , int , const char*, const char*, int);
|
||||
UnityExternCall(void, UnityKeyboard_Show);
|
||||
UnityExternCall(void, UnityKeyboard_Hide);
|
||||
UnityExternCall(void, UnityKeyboard_GetRect, float*, float*, float*, float*);
|
||||
UnityExternCall(void, UnityKeyboard_SetText, const char*);
|
||||
UnityExternCall(NSString*, UnityKeyboard_GetText);
|
||||
UnityExternCall(int, UnityKeyboard_IsActive);
|
||||
UnityExternCall(int, UnityKeyboard_Status);
|
||||
UnityExternCall(void, UnityKeyboard_SetInputHidden, int);
|
||||
UnityExternCall(int, UnityKeyboard_IsInputHidden);
|
||||
UnityExternCall(void, UnityKeyboard_SetCharacterLimit, unsigned);
|
||||
|
||||
UnityExternCall(int, UnityKeyboard_CanGetSelection);
|
||||
UnityExternCall(void, UnityKeyboard_GetSelection, int*, int*);
|
||||
UnityExternCall(int, UnityKeyboard_CanSetSelection);
|
||||
UnityExternCall(void, UnityKeyboard_SetSelection, int, int);
|
||||
|
||||
|
||||
// UI/UnityViewControllerBase.mm
|
||||
UnityExternCall(void, UnityNotifyHideHomeButtonChange);
|
||||
UnityExternCall(void, UnityNotifyDeferSystemGesturesChange);
|
||||
|
||||
// UI/StoreReview.m
|
||||
#if PLATFORM_IOS
|
||||
UnityExternCall(bool, UnityRequestStoreReview);
|
||||
#endif
|
||||
|
||||
// Unity/AVCapture.mm
|
||||
UnityExternCall(int, UnityGetAVCapturePermission, int);
|
||||
UnityExternCall(void, UnityRequestAVCapturePermission, int, void*);
|
||||
|
||||
// Unity/CameraCapture.mm
|
||||
typedef void(*UnityEnumVideoCaptureDevicesCallback)(void* udata, const char* name, int frontFacing, int autoFocusPointSupported, int kind, const int* resolutions, int resCount);
|
||||
UnityExternCall(void, UnityEnumVideoCaptureDevices, void*, UnityEnumVideoCaptureDevicesCallback);
|
||||
UnityExternCall(void*, UnityInitCameraCapture, int, int, int, int, int, void*);
|
||||
UnityExternCall(void, UnityStartCameraCapture, void*);
|
||||
UnityExternCall(void, UnityPauseCameraCapture, void*);
|
||||
UnityExternCall(void, UnityStopCameraCapture, void*);
|
||||
UnityExternCall(void, UnityCameraCaptureExtents, void*, int*, int*);
|
||||
UnityExternCall(void, UnityCameraCaptureReadToMemory, void*, void*, int, int);
|
||||
UnityExternCall(int, UnityCameraCaptureVideoRotationDeg, void*);
|
||||
UnityExternCall(int, UnityCameraCaptureVerticallyMirrored, void*);
|
||||
UnityExternCall(int, UnityCameraCaptureSetAutoFocusPoint, void*, float, float);
|
||||
|
||||
|
||||
// Unity/DeviceSettings.mm
|
||||
UnityExternCall(const char*, UnityDeviceUniqueIdentifier);
|
||||
UnityExternCall(const char*, UnityVendorIdentifier);
|
||||
UnityExternCall(const char*, UnityAdIdentifier);
|
||||
UnityExternCall(int, UnityAdTrackingEnabled);
|
||||
UnityExternCall(const char*, UnityDeviceName);
|
||||
UnityExternCall(const char*, UnitySystemName);
|
||||
UnityExternCall(const char*, UnitySystemVersion);
|
||||
UnityExternCall(const char*, UnityDeviceModel);
|
||||
UnityExternCall(int, UnityDeviceCPUCount);
|
||||
UnityExternCall(int, UnityGetPhysicalMemory);
|
||||
UnityExternCall(int, UnityDeviceGeneration);
|
||||
UnityExternCall(int, ParseDeviceGeneration);
|
||||
UnityExternCall(int, UnityDeviceSupportsUpsideDown);
|
||||
UnityExternCall(int, UnityDeviceSupportedOrientations);
|
||||
UnityExternCall(int, UnityDeviceIsStylusTouchSupported);
|
||||
UnityExternCall(int, UnityDeviceCanShowWideColor);
|
||||
UnityExternCall(float, UnityDeviceDPI);
|
||||
UnityExternCall(const char*, UnitySystemLanguage);
|
||||
UnityExternCall(int, UnityGetLowPowerModeEnabled);
|
||||
UnityExternCall(int, UnityGetWantsSoftwareDimming);
|
||||
UnityExternCall(void, UnitySetWantsSoftwareDimming, int);
|
||||
UnityExternCall(int, UnityGetIosAppOnMac);
|
||||
|
||||
// Unity/DisplayManager.mm
|
||||
UnityExternCall(void, UnityActivateScreenForRendering, void*);
|
||||
UnityExternCall(void, UnityStartFrameRendering);
|
||||
UnityExternCall(void, UnityDestroyUnityRenderSurfaces);
|
||||
UnityExternCall(int, UnityMainScreenRefreshRate);
|
||||
UnityExternCall(void, UnitySetBrightness, float);
|
||||
UnityExternCall(float, UnityGetBrightness);
|
||||
UnityExternCall(bool, UnityIsFullscreen);
|
||||
|
||||
#if SUPPORT_MULTIPLE_DISPLAYS || PLATFORM_IOS
|
||||
UnityExternCall(int, UnityDisplayManager_DisplayCount);
|
||||
UnityExternCall(void, UnityDisplayManager_DisplayRenderingResolution, void*, int*, int*);
|
||||
UnityExternCall(int, UnityDisplayManager_PrimaryDisplayIndex);
|
||||
UnityExternCall(bool, UnityDisplayManager_DisplayActive, void*);
|
||||
UnityExternCall(void, UnityDisplayManager_DisplayRenderingBuffers, void*, RenderSurfaceBase**, RenderSurfaceBase**);
|
||||
UnityExternCall(void, UnityDisplayManager_SetRenderingResolution, void*, int, int);
|
||||
UnityExternCall(void, UnityDisplayManager_DisplaySystemResolution, void*, int*, int*);
|
||||
#endif
|
||||
|
||||
// Unity/Filesystem.mm
|
||||
UnityExternCall(const char*, UnityDataBundleDir);
|
||||
UnityExternCall(void, UnitySetDataBundleDirWithBundleId, const char*);
|
||||
UnityExternCall(const char*, UnityDocumentsDir);
|
||||
UnityExternCall(const char*, UnityLibraryDir);
|
||||
UnityExternCall(const char*, UnityCachesDir);
|
||||
UnityExternCall(int, UnityUpdateNoBackupFlag, const char*, int);
|
||||
|
||||
// iPhoneMisc.mm
|
||||
UnityExternCall(const char* const*, UnityFontFallbacks);
|
||||
|
||||
// Unity/WWWConnection.mm
|
||||
UnityExternCall(void*, UnityCreateWebRequestBackend, void*, const char*, const void*, const char*);
|
||||
UnityExternCall(void, UnitySendWebRequest, void*, unsigned, unsigned long, bool);
|
||||
UnityExternCall(void, UnityDestroyWebRequestBackend, void*);
|
||||
UnityExternCall(void, UnityCancelWebRequest, const void*);
|
||||
UnityExternCall(void, UnityWebRequestCleanupSession);
|
||||
UnityExternCall(bool, UnityWebRequestIsDone, void*);
|
||||
UnityExternCall(void, UnityWebRequestClearCookieCache, const char*);
|
||||
|
||||
// Unity/FullScreenVideoPlayer.mm
|
||||
UnityExternCall(void, UnityPlayFullScreenVideo, const char*, const float*, unsigned, unsigned);
|
||||
UnityExternCall(int, UnityIsFullScreenPlaying);
|
||||
|
||||
// Unity/OnDemandResources.mm
|
||||
struct OnDemandResourcesRequestData;
|
||||
typedef void (*OnDemandResourcesRequestCompleteHandler)(void* handlerData, const char* error);
|
||||
UnityExternCall(OnDemandResourcesRequestData*, UnityOnDemandResourcesCreateRequest, NSSet*, OnDemandResourcesRequestCompleteHandler, void*);
|
||||
UnityExternCall(void, UnityOnDemandResourcesRelease, OnDemandResourcesRequestData*);
|
||||
UnityExternCall(float, UnityOnDemandResourcesGetProgress, OnDemandResourcesRequestData*);
|
||||
UnityExternCall(float, UnityOnDemandResourcesGetLoadingPriority, OnDemandResourcesRequestData*);
|
||||
UnityExternCall(void, UnityOnDemandResourcesSetLoadingPriority, OnDemandResourcesRequestData*, float);
|
||||
UnityExternCall(NSString*, UnityOnDemandResourcesGetResourcePath, OnDemandResourcesRequestData*, const char*);
|
||||
|
||||
// Unity/UnityReplayKit.mm
|
||||
UnityExternCall(int, UnityReplayKitAPIAvailable);
|
||||
UnityExternCall(int, UnityReplayKitRecordingAvailable);
|
||||
UnityExternCall(const char*, UnityReplayKitLastError);
|
||||
UnityExternCall(int, UnityReplayKitStartRecording);
|
||||
UnityExternCall(int, UnityReplayKitIsRecording);
|
||||
UnityExternCall(int, UnityReplayKitStopRecording);
|
||||
UnityExternCall(int, UnityReplayKitDiscard);
|
||||
UnityExternCall(int, UnityReplayKitPreview);
|
||||
UnityExternCall(int, UnityReplayKitIsPreviewControllerActive);
|
||||
|
||||
UnityExternCall(int, UnityReplayKitBroadcastingAPIAvailable);
|
||||
UnityExternCall(void, UnityReplayKitStartBroadcasting, void*);
|
||||
UnityExternCall(void, UnityReplayKitStopBroadcasting);
|
||||
UnityExternCall(void, UnityReplayKitPauseBroadcasting);
|
||||
UnityExternCall(void, UnityReplayKitResumeBroadcasting);
|
||||
UnityExternCall(int, UnityReplayKitIsBroadcasting);
|
||||
UnityExternCall(int, UnityReplayKitIsBroadcastingPaused);
|
||||
UnityExternCall(const char*, UnityReplayKitGetBroadcastURL);
|
||||
|
||||
UnityExternCall(int, UnityReplayKitIsCameraEnabled);
|
||||
UnityExternCall(int, UnityReplayKitSetCameraEnabled, bool);
|
||||
UnityExternCall(int, UnityReplayKitIsMicrophoneEnabled);
|
||||
UnityExternCall(int, UnityReplayKitSetMicrophoneEnabled, bool);
|
||||
UnityExternCall(int, UnityReplayKitShowCameraPreviewAt, float, float, float, float);
|
||||
UnityExternCall(void, UnityReplayKitHideCameraPreview);
|
||||
UnityExternCall(void, UnityReplayKitCreateOverlayWindow);
|
||||
|
||||
// LocationService static members to extern c
|
||||
//UnityExternCall4StaticMember(void, LocationService, SetDistanceFilter,float);
|
||||
UnityExternCall4StaticMember(void, LocationService, SetDesiredAccuracy, float);
|
||||
UnityExternCall4StaticMember(float, LocationService, GetDesiredAccuracy);
|
||||
UnityExternCall4StaticMember(void, LocationService, SetDistanceFilter, float);
|
||||
UnityExternCall4StaticMember(float, LocationService, GetDistanceFilter);
|
||||
UnityExternCall4StaticMember(bool, LocationService, IsServiceEnabledByUser);
|
||||
UnityExternCall4StaticMember(void, LocationService, StartUpdatingLocation);
|
||||
UnityExternCall4StaticMember(void, LocationService, StopUpdatingLocation);
|
||||
UnityExternCall4StaticMember(void, LocationService, SetHeadingUpdatesEnabled, bool);
|
||||
UnityExternCall4StaticMember(bool, LocationService, IsHeadingUpdatesEnabled);
|
||||
UnityExternCall4StaticMember(LocationServiceStatus, LocationService, GetLocationStatus);
|
||||
UnityExternCall4StaticMember(LocationServiceStatus, LocationService, GetHeadingStatus);
|
||||
UnityExternCall4StaticMember(bool, LocationService, IsHeadingAvailable);
|
||||
|
||||
//Apple TV Remote
|
||||
#if PLATFORM_TVOS
|
||||
UnityExternCall(int, UnityGetAppleTVRemoteAllowExitToMenu);
|
||||
UnityExternCall(void, UnitySetAppleTVRemoteAllowExitToMenu, int);
|
||||
UnityExternCall(int, UnityGetAppleTVRemoteAllowRotation);
|
||||
UnityExternCall(void, UnitySetAppleTVRemoteAllowRotation, int);
|
||||
UnityExternCall(int, UnityGetAppleTVRemoteReportAbsoluteDpadValues);
|
||||
UnityExternCall(void, UnitySetAppleTVRemoteReportAbsoluteDpadValues, int);
|
||||
UnityExternCall(int, UnityGetAppleTVRemoteTouchesEnabled);
|
||||
UnityExternCall(void, UnitySetAppleTVRemoteTouchesEnabled, int);
|
||||
#endif
|
||||
|
||||
// misc not in trampoline
|
||||
UnityExternCall(bool, Unity_il2cppNoExceptions);
|
||||
UnityExternCall(void, RegisterStaticallyLinkedModulesGranular);
|
||||
@@ -0,0 +1,164 @@
|
||||
/* SINGLE CPP FILE TO GENERATE SEAMLESS BRIDGE BETWEEN BINARIES < SHARED ENGINE LIBRARY WITH ABSTRACT EXTERN FUNCTIONS> | < PLAYER EXECUTABLE WITH ABSTRACT FUNCTION IMPLEMENTATION >
|
||||
1. if building shared engine library this file will:
|
||||
define body for Unity* methods that proxy call to actual method
|
||||
actual method will be set later from outside with respective call to SetUnity*Body
|
||||
defines SetUnity*Body method to set actual method for call, theese functions are exported from library
|
||||
|
||||
2. if building player against shared engine library this file will:
|
||||
calls SetUnity*Body providing actual method to be called by shared engine library later
|
||||
wraps all SetUnity*Body calls in one single method SetAllUnityFunctionsForDynamicPlayerLib
|
||||
|
||||
- notes:
|
||||
file will be included only if development / il2ccp and:
|
||||
- for xcode project if BuildSettings.UseDynamicPlayerLib is true
|
||||
- for player if (build.pl staticLib=1, jam BUILD_IOS_DYNAMIC_PLAYER=1)
|
||||
|
||||
DynamicLibEngineAPI-functions.h include list of functions to proxy calls from player to trampoline
|
||||
- each function inlist is defined with UnityExternCall or UnityExternCall4StaticMember
|
||||
*/
|
||||
|
||||
// deal with __VA_ARGS__ to convert them to formated lists with provided M macro
|
||||
#define VA_ARGS_COUNT(...) INTERNAL_GET_ARG_COUNT_PRIVATE(0, ## __VA_ARGS__, 20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0)
|
||||
#define INTERNAL_GET_ARG_COUNT_PRIVATE(_0, _1_, _2_, _3_, _4_, _5_, _6_, _7_, _8_, _9_, _10_, _11_, _12_, _13_, _14_, _15_, _16_, _17_, _18_, _19_, _20_, count, ...) count
|
||||
|
||||
#define JOIN_VA_ARGS_0(M, ...)
|
||||
#define JOIN_VA_ARGS_1(M, T1) M(T1,1)
|
||||
#define JOIN_VA_ARGS_2(M, T1, T2) M(T1,1), M(T2,2)
|
||||
#define JOIN_VA_ARGS_3(M, T1, T2, T3) M(T1,1), M(T2,2), M(T3,3)
|
||||
#define JOIN_VA_ARGS_4(M, T1, T2, T3, T4) M(T1,1), M(T2,2), M(T3,3), M(T4,4)
|
||||
#define JOIN_VA_ARGS_5(M, T1, T2, T3, T4, T5) M(T1,1), M(T2,2), M(T3,3), M(T4,4), M(T5,5)
|
||||
#define JOIN_VA_ARGS_6(M, T1, T2, T3, T4, T5, T6) M(T1,1), M(T2,2), M(T3,3), M(T4,4), M(T5,5), M(T6,6)
|
||||
#define JOIN_VA_ARGS_7(M, T1, T2, T3, T4, T5, T6, T7) M(T1,1), M(T2,2), M(T3,3), M(T4,4), M(T5,5), M(T6,6), M(T7,7)
|
||||
#define JOIN_VA_ARGS_8(M, T1, T2, T3, T4, T5, T6, T7, T8) M(T1,1), M(T2,2), M(T3,3), M(T4,4), M(T5,5), M(T6,6), M(T7,7), M(T8,8)
|
||||
#define JOIN_VA_ARGS_9(M, T1, T2, T3, T4, T5, T6, T7, T8, T9) M(T1,1), M(T2,2), M(T3,3), M(T4,4), M(T5,5), M(T6,6), M(T7,7), M(T8,8), M(T9,9)
|
||||
|
||||
#define JOIN_VA_ARGS___(M, N, ...) JOIN_VA_ARGS_##N(M, __VA_ARGS__ )
|
||||
#define JOIN_VA_ARGS__(M, N, ...) JOIN_VA_ARGS___(M,N,__VA_ARGS__)
|
||||
#define JOIN_VA_ARGS_(M, ...) JOIN_VA_ARGS__(M,VA_ARGS_COUNT(__VA_ARGS__), __VA_ARGS__)
|
||||
#define JOIN_VA_ARGS(M, ...) JOIN_VA_ARGS_(M,__VA_ARGS__)
|
||||
|
||||
// convert to function definition params:
|
||||
// egz: VA_ARGS_TO_PARAMS(int, char, bool) expands to: int p3, char p2, bool p1
|
||||
#define VA_JOIN_AS_PARAMS(type, index) type p##index
|
||||
#define VA_ARGS_TO_PARAMS(...) JOIN_VA_ARGS(VA_JOIN_AS_PARAMS,__VA_ARGS__)
|
||||
|
||||
// convert to function call params
|
||||
// egz: VA_ARGS_TO_CALL(int,char,bool) exapnds to: p3, p2, p1
|
||||
#define VA_JOIN_AS_CALL(type, index) p##index
|
||||
#define VA_ARGS_TO_CALL(...) JOIN_VA_ARGS(VA_JOIN_AS_CALL,__VA_ARGS__)
|
||||
|
||||
#ifndef UNITY_ENGINE_DYNAMICLIB_MODE
|
||||
#define UNITY_ENGINE_DYNAMICLIB_MODE 0
|
||||
#endif
|
||||
|
||||
#if UNITY_ENGINE_DYNAMICLIB_MODE
|
||||
// [ part of Unity Player ]
|
||||
// this part generates Unity* functions that act as proxy to call actual function from trampoline
|
||||
// for each function in DynamicLibEngineAPI-functions.h will be generated proxy function
|
||||
|
||||
// proxy for extern "C" function
|
||||
// egz: UnityExternCall(int, UnityTestFunctionName, int);
|
||||
// will expand to:
|
||||
// static int(*gPtrUnityTestFunctionName)(int) = nullptr;
|
||||
// extern "C" int UnityTestFunctionName(int p1) {
|
||||
// assert(gPtrUnityTestFunctionName) != nullptr);
|
||||
// return gPtrUnityTestFunctionName(p1);
|
||||
// }
|
||||
// __attribute__((visibility("default")))
|
||||
// extern "C" void SetUnityTestFunctionNameBody(decltype(&UnityTestFunctionName) fPtr) {
|
||||
// gPtrUnityTestFunctionName = fPtr;
|
||||
// }
|
||||
#define UnityExternCall(returnType, funcName, ...) \
|
||||
static returnType(*gPtr##funcName)(__VA_ARGS__) = nullptr; \
|
||||
extern "C" returnType funcName(VA_ARGS_TO_PARAMS(__VA_ARGS__)) {\
|
||||
assert(gPtr##funcName != nullptr); \
|
||||
return gPtr##funcName(VA_ARGS_TO_CALL(__VA_ARGS__)); \
|
||||
} \
|
||||
__attribute__((visibility("default"))) \
|
||||
extern "C" void Set##funcName##Body(decltype(&funcName) fPtr) { \
|
||||
gPtr##funcName = fPtr; \
|
||||
}
|
||||
|
||||
// proxy for class static methods
|
||||
// egz: UnityExternCall4StaticMember(int, MyClass MyMethod, int);
|
||||
// will expand to:
|
||||
// static int(*gPtrMyClassMyMethod)(int) = nullptr;
|
||||
// int MyClass::MyMethod(int p1) {
|
||||
// assert(gPtrMyClassMyMethod) != nullptr);
|
||||
// return gPtrMyClassMyMethod(p1);
|
||||
// }
|
||||
// __attribute__((visibility("default")))
|
||||
// extern "C" void SetMyClassMyMethodBody(decltype(gPtrMyClassMyMethod) fPtr) {
|
||||
// gPtrMyClassMyMethod = fPtr;
|
||||
// }
|
||||
#define UnityExternCall4StaticMember(returnType, className, funcName, ...) \
|
||||
static returnType(*gPtr##className##funcName)(__VA_ARGS__) = nullptr; \
|
||||
returnType className::funcName(VA_ARGS_TO_PARAMS(__VA_ARGS__)) { \
|
||||
assert(gPtr##className##funcName != nullptr); \
|
||||
return gPtr##className##funcName(VA_ARGS_TO_CALL(__VA_ARGS__)); \
|
||||
} \
|
||||
__attribute__((visibility("default"))) \
|
||||
extern "C" void Set##className##funcName##Body(decltype(gPtr##className##funcName) fPtr) { \
|
||||
gPtr##className##funcName = fPtr; \
|
||||
}
|
||||
|
||||
#include "PlatformDependent/iPhonePlayer/Trampoline/Classes/Unity/UnitySharedDecls.h"
|
||||
#include "PlatformDependent/iPhonePlayer/Trampoline/Classes/Unity/UnityRendering.h"
|
||||
#include "PlatformDependent/iPhonePlayer/TrampolineInterface.h"
|
||||
#include "Runtime/Graphics/DisplayManager.h"
|
||||
#include "Runtime/Input/LocationService.h"
|
||||
|
||||
#import <UIKit/UIKit.h>
|
||||
|
||||
#include "Configuration/UndefinePlatforms.h"
|
||||
#include <mach-o/ldsyms.h>
|
||||
#include "Configuration/RedefinePlatforms.h"
|
||||
|
||||
#include "DynamicLibEngineAPI-functions.h"
|
||||
|
||||
#undef UnityExternCall
|
||||
#undef UnityExternCall4StaticMember
|
||||
#else
|
||||
// [ part of Xcode project ]
|
||||
// for each function defined in DynamicLibEngineAPI-functions.h will be generated SetUnity*Body function
|
||||
|
||||
// for extern "C" functions
|
||||
// egz: UnityExternCall(int, UnityTestFunctionName, int);
|
||||
// will expand to:
|
||||
// extern "C" UnityTestFunctionName(int);
|
||||
// extern "C" SetUnityTestFunctionName(decltype(&UnityTestFunctionName));
|
||||
#define UnityExternCall(returnType, funcName, ...) \
|
||||
extern "C" returnType funcName(__VA_ARGS__); \
|
||||
extern "C" void Set##funcName##Body(decltype(&funcName));
|
||||
|
||||
// for class static method
|
||||
// egz: UnityExternCall4StaticMember(int, MyClass MyMethod, int);
|
||||
// will expand to:
|
||||
// extern "C" void SetMyClassMyMethodBody(decltype(&MyClass::MyMethod));
|
||||
#define UnityExternCall4StaticMember(returnType, className, funcName, ...) \
|
||||
extern "C" void Set##className##funcName##Body(decltype(&className::funcName));
|
||||
|
||||
#include "UnityRendering.h"
|
||||
#include "Classes/iPhone_Sensors.h"
|
||||
|
||||
#include "UndefinePlatforms.h"
|
||||
#include <mach-o/ldsyms.h>
|
||||
#include "RedefinePlatforms.h"
|
||||
|
||||
#include "DynamicLibEngineAPI-functions.h"
|
||||
|
||||
#undef UnityExternCall
|
||||
#undef UnityExternCall4StaticMember
|
||||
|
||||
// single function to call every Set*Body function from DynamicLibEngineAPI-functions.h
|
||||
#define UnityExternCall(returnType, funcName, ...) Set##funcName##Body(funcName);
|
||||
#define UnityExternCall4StaticMember(returnType, className, funcName, ...) Set##className##funcName##Body(className::funcName)
|
||||
|
||||
extern "C" void SetAllUnityFunctionsForDynamicPlayerLib()
|
||||
{
|
||||
#include "DynamicLibEngineAPI-functions.h"
|
||||
}
|
||||
|
||||
#undef UnityExternCall
|
||||
#undef UnityExternCall4StaticMember
|
||||
#endif
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,122 @@
|
||||
#include "pch-cpp.hpp"
|
||||
|
||||
#ifndef _MSC_VER
|
||||
# include <alloca.h>
|
||||
#else
|
||||
# include <malloc.h>
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
IL2CPP_EXTERN_C const Il2CppMethodPointer g_ReversePInvokeWrapperPointers[];
|
||||
IL2CPP_EXTERN_C const Il2CppMethodPointer g_Il2CppGenericMethodPointers[];
|
||||
IL2CPP_EXTERN_C const Il2CppMethodPointer g_Il2CppGenericAdjustorThunks[];
|
||||
IL2CPP_EXTERN_C const InvokerMethod g_Il2CppInvokerPointers[];
|
||||
IL2CPP_EXTERN_C const Il2CppMethodPointer g_UnresolvedVirtualMethodPointers[];
|
||||
IL2CPP_EXTERN_C Il2CppInteropData g_Il2CppInteropData[];
|
||||
IL2CPP_EXTERN_C_CONST Il2CppCodeGenModule g_AssemblyU2DCSharp_CodeGenModule;
|
||||
IL2CPP_EXTERN_C_CONST Il2CppCodeGenModule g_Mono_Security_CodeGenModule;
|
||||
IL2CPP_EXTERN_C_CONST Il2CppCodeGenModule g_System_CodeGenModule;
|
||||
IL2CPP_EXTERN_C_CONST Il2CppCodeGenModule g_System_Configuration_CodeGenModule;
|
||||
IL2CPP_EXTERN_C_CONST Il2CppCodeGenModule g_System_Core_CodeGenModule;
|
||||
IL2CPP_EXTERN_C_CONST Il2CppCodeGenModule g_System_Xml_CodeGenModule;
|
||||
IL2CPP_EXTERN_C_CONST Il2CppCodeGenModule g_UnityEngine_AnimationModule_CodeGenModule;
|
||||
IL2CPP_EXTERN_C_CONST Il2CppCodeGenModule g_UnityEngine_AudioModule_CodeGenModule;
|
||||
IL2CPP_EXTERN_C_CONST Il2CppCodeGenModule g_UnityEngine_CodeGenModule;
|
||||
IL2CPP_EXTERN_C_CONST Il2CppCodeGenModule g_UnityEngine_CoreModule_CodeGenModule;
|
||||
IL2CPP_EXTERN_C_CONST Il2CppCodeGenModule g_UnityEngine_GameCenterModule_CodeGenModule;
|
||||
IL2CPP_EXTERN_C_CONST Il2CppCodeGenModule g_UnityEngine_GridModule_CodeGenModule;
|
||||
IL2CPP_EXTERN_C_CONST Il2CppCodeGenModule g_UnityEngine_IMGUIModule_CodeGenModule;
|
||||
IL2CPP_EXTERN_C_CONST Il2CppCodeGenModule g_UnityEngine_InputLegacyModule_CodeGenModule;
|
||||
IL2CPP_EXTERN_C_CONST Il2CppCodeGenModule g_UnityEngine_JSONSerializeModule_CodeGenModule;
|
||||
IL2CPP_EXTERN_C_CONST Il2CppCodeGenModule g_UnityEngine_Physics2DModule_CodeGenModule;
|
||||
IL2CPP_EXTERN_C_CONST Il2CppCodeGenModule g_UnityEngine_PhysicsModule_CodeGenModule;
|
||||
IL2CPP_EXTERN_C_CONST Il2CppCodeGenModule g_UnityEngine_SharedInternalsModule_CodeGenModule;
|
||||
IL2CPP_EXTERN_C_CONST Il2CppCodeGenModule g_UnityEngine_SpriteShapeModule_CodeGenModule;
|
||||
IL2CPP_EXTERN_C_CONST Il2CppCodeGenModule g_UnityEngine_TextCoreFontEngineModule_CodeGenModule;
|
||||
IL2CPP_EXTERN_C_CONST Il2CppCodeGenModule g_UnityEngine_TextCoreTextEngineModule_CodeGenModule;
|
||||
IL2CPP_EXTERN_C_CONST Il2CppCodeGenModule g_UnityEngine_TextRenderingModule_CodeGenModule;
|
||||
IL2CPP_EXTERN_C_CONST Il2CppCodeGenModule g_UnityEngine_TilemapModule_CodeGenModule;
|
||||
IL2CPP_EXTERN_C_CONST Il2CppCodeGenModule g_UnityEngine_UIElementsModule_CodeGenModule;
|
||||
IL2CPP_EXTERN_C_CONST Il2CppCodeGenModule g_UnityEngine_UIElementsNativeModule_CodeGenModule;
|
||||
IL2CPP_EXTERN_C_CONST Il2CppCodeGenModule g_UnityEngine_UIModule_CodeGenModule;
|
||||
IL2CPP_EXTERN_C_CONST Il2CppCodeGenModule g_UnityEngine_UI_CodeGenModule;
|
||||
IL2CPP_EXTERN_C_CONST Il2CppCodeGenModule g_UnityEngine_UnityAnalyticsModule_CodeGenModule;
|
||||
IL2CPP_EXTERN_C_CONST Il2CppCodeGenModule g_UnityEngine_UnityWebRequestAudioModule_CodeGenModule;
|
||||
IL2CPP_EXTERN_C_CONST Il2CppCodeGenModule g_UnityEngine_UnityWebRequestModule_CodeGenModule;
|
||||
IL2CPP_EXTERN_C_CONST Il2CppCodeGenModule g___Generated_CodeGenModule;
|
||||
IL2CPP_EXTERN_C_CONST Il2CppCodeGenModule g_mscorlib_CodeGenModule;
|
||||
IL2CPP_EXTERN_C const Il2CppCodeGenModule* g_CodeGenModules[];
|
||||
const Il2CppCodeGenModule* g_CodeGenModules[32] =
|
||||
{
|
||||
(&g_AssemblyU2DCSharp_CodeGenModule),
|
||||
(&g_Mono_Security_CodeGenModule),
|
||||
(&g_System_CodeGenModule),
|
||||
(&g_System_Configuration_CodeGenModule),
|
||||
(&g_System_Core_CodeGenModule),
|
||||
(&g_System_Xml_CodeGenModule),
|
||||
(&g_UnityEngine_AnimationModule_CodeGenModule),
|
||||
(&g_UnityEngine_AudioModule_CodeGenModule),
|
||||
(&g_UnityEngine_CodeGenModule),
|
||||
(&g_UnityEngine_CoreModule_CodeGenModule),
|
||||
(&g_UnityEngine_GameCenterModule_CodeGenModule),
|
||||
(&g_UnityEngine_GridModule_CodeGenModule),
|
||||
(&g_UnityEngine_IMGUIModule_CodeGenModule),
|
||||
(&g_UnityEngine_InputLegacyModule_CodeGenModule),
|
||||
(&g_UnityEngine_JSONSerializeModule_CodeGenModule),
|
||||
(&g_UnityEngine_Physics2DModule_CodeGenModule),
|
||||
(&g_UnityEngine_PhysicsModule_CodeGenModule),
|
||||
(&g_UnityEngine_SharedInternalsModule_CodeGenModule),
|
||||
(&g_UnityEngine_SpriteShapeModule_CodeGenModule),
|
||||
(&g_UnityEngine_TextCoreFontEngineModule_CodeGenModule),
|
||||
(&g_UnityEngine_TextCoreTextEngineModule_CodeGenModule),
|
||||
(&g_UnityEngine_TextRenderingModule_CodeGenModule),
|
||||
(&g_UnityEngine_TilemapModule_CodeGenModule),
|
||||
(&g_UnityEngine_UIElementsModule_CodeGenModule),
|
||||
(&g_UnityEngine_UIElementsNativeModule_CodeGenModule),
|
||||
(&g_UnityEngine_UIModule_CodeGenModule),
|
||||
(&g_UnityEngine_UI_CodeGenModule),
|
||||
(&g_UnityEngine_UnityAnalyticsModule_CodeGenModule),
|
||||
(&g_UnityEngine_UnityWebRequestAudioModule_CodeGenModule),
|
||||
(&g_UnityEngine_UnityWebRequestModule_CodeGenModule),
|
||||
(&g___Generated_CodeGenModule),
|
||||
(&g_mscorlib_CodeGenModule),
|
||||
};
|
||||
IL2CPP_EXTERN_C const Il2CppCodeRegistration g_CodeRegistration;
|
||||
const Il2CppCodeRegistration g_CodeRegistration =
|
||||
{
|
||||
4,
|
||||
g_ReversePInvokeWrapperPointers,
|
||||
20077,
|
||||
g_Il2CppGenericMethodPointers,
|
||||
g_Il2CppGenericAdjustorThunks,
|
||||
5223,
|
||||
g_Il2CppInvokerPointers,
|
||||
764,
|
||||
g_UnresolvedVirtualMethodPointers,
|
||||
315,
|
||||
g_Il2CppInteropData,
|
||||
0,
|
||||
NULL,
|
||||
32,
|
||||
g_CodeGenModules,
|
||||
};
|
||||
IL2CPP_EXTERN_C_CONST Il2CppMetadataRegistration g_MetadataRegistration;
|
||||
static const Il2CppCodeGenOptions s_Il2CppCodeGenOptions =
|
||||
{
|
||||
true,
|
||||
7,
|
||||
1,
|
||||
};
|
||||
void s_Il2CppCodegenRegistration()
|
||||
{
|
||||
il2cpp_codegen_register (&g_CodeRegistration, &g_MetadataRegistration, &s_Il2CppCodeGenOptions);
|
||||
}
|
||||
#if RUNTIME_IL2CPP
|
||||
typedef void (*CodegenRegistrationFunction)();
|
||||
CodegenRegistrationFunction g_CodegenRegistration = s_Il2CppCodegenRegistration;
|
||||
#endif
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,41 @@
|
||||
#include "pch-c.h"
|
||||
#ifndef _MSC_VER
|
||||
# include <alloca.h>
|
||||
#else
|
||||
# include <malloc.h>
|
||||
#endif
|
||||
|
||||
|
||||
#include "codegen/il2cpp-codegen-metadata.h"
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
extern Il2CppGenericClass* const g_Il2CppGenericTypes[];
|
||||
extern const Il2CppGenericInst* const g_Il2CppGenericInstTable[];
|
||||
extern const Il2CppGenericMethodFunctionsDefinitions g_Il2CppGenericMethodFunctions[];
|
||||
extern const Il2CppType* const g_Il2CppTypeTable[];
|
||||
extern const Il2CppMethodSpec g_Il2CppMethodSpecTable[];
|
||||
IL2CPP_EXTERN_C_CONST int32_t* g_FieldOffsetTable[];
|
||||
IL2CPP_EXTERN_C_CONST Il2CppTypeDefinitionSizes* g_Il2CppTypeDefinitionSizesTable[];
|
||||
IL2CPP_EXTERN_C const Il2CppMetadataRegistration g_MetadataRegistration;
|
||||
const Il2CppMetadataRegistration g_MetadataRegistration =
|
||||
{
|
||||
2791,
|
||||
g_Il2CppGenericTypes,
|
||||
1653,
|
||||
g_Il2CppGenericInstTable,
|
||||
20136,
|
||||
g_Il2CppGenericMethodFunctions,
|
||||
10370,
|
||||
g_Il2CppTypeTable,
|
||||
24676,
|
||||
g_Il2CppMethodSpecTable,
|
||||
3560,
|
||||
g_FieldOffsetTable,
|
||||
3560,
|
||||
g_Il2CppTypeDefinitionSizesTable,
|
||||
0,
|
||||
NULL,
|
||||
};
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,88 @@
|
||||
#include "pch-cpp.hpp"
|
||||
|
||||
#ifndef _MSC_VER
|
||||
# include <alloca.h>
|
||||
#else
|
||||
# include <malloc.h>
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// System.Void
|
||||
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915;
|
||||
|
||||
|
||||
|
||||
IL2CPP_EXTERN_C_BEGIN
|
||||
IL2CPP_EXTERN_C_END
|
||||
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic push
|
||||
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
||||
#pragma clang diagnostic ignored "-Wunused-variable"
|
||||
#endif
|
||||
|
||||
// System.ValueType
|
||||
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F : public RuntimeObject
|
||||
{
|
||||
};
|
||||
// Native definition for P/Invoke marshalling of System.ValueType
|
||||
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_pinvoke
|
||||
{
|
||||
};
|
||||
// Native definition for COM marshalling of System.ValueType
|
||||
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_com
|
||||
{
|
||||
};
|
||||
|
||||
// System.IntPtr
|
||||
struct IntPtr_t
|
||||
{
|
||||
// System.Void* System.IntPtr::m_value
|
||||
void* ___m_value_0;
|
||||
};
|
||||
|
||||
// System.Void
|
||||
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915
|
||||
{
|
||||
union
|
||||
{
|
||||
struct
|
||||
{
|
||||
};
|
||||
uint8_t Void_t4861ACF8F4594C3437BB48B6E56783494B843915__padding[1];
|
||||
};
|
||||
};
|
||||
|
||||
// System.IntPtr
|
||||
struct IntPtr_t_StaticFields
|
||||
{
|
||||
// System.IntPtr System.IntPtr::Zero
|
||||
intptr_t ___Zero_1;
|
||||
};
|
||||
|
||||
// System.IntPtr
|
||||
|
||||
// System.Void
|
||||
|
||||
// System.Void
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic pop
|
||||
#endif
|
||||
|
||||
extern "C" void DEFAULT_CALL ReversePInvokeWrapper_CultureInfo_OnCultureInfoChangedInAppX_m407BCFC1029A4485B7B063BC2F3601968C3BE577(Il2CppChar* ___0_language);
|
||||
extern "C" int32_t CDECL ReversePInvokeWrapper_DeflateStreamNative_UnmanagedRead_m321A2621068F1C9509594A4D8F405F4F12C1CEB3(intptr_t ___0_buffer, int32_t ___1_length, intptr_t ___2_data);
|
||||
extern "C" int32_t CDECL ReversePInvokeWrapper_DeflateStreamNative_UnmanagedWrite_mB0AD438266A9DD2813715E8BC90BF07DC7A02F52(intptr_t ___0_buffer, int32_t ___1_length, intptr_t ___2_data);
|
||||
extern "C" void DEFAULT_CALL ReversePInvokeWrapper_OSSpecificSynchronizationContext_InvocationEntry_mF93C3CF6DBEC86E377576D840CAF517CB6E4D7E3(intptr_t ___0_arg);
|
||||
|
||||
|
||||
IL2CPP_EXTERN_C const Il2CppMethodPointer g_ReversePInvokeWrapperPointers[];
|
||||
const Il2CppMethodPointer g_ReversePInvokeWrapperPointers[4] =
|
||||
{
|
||||
reinterpret_cast<Il2CppMethodPointer>(ReversePInvokeWrapper_CultureInfo_OnCultureInfoChangedInAppX_m407BCFC1029A4485B7B063BC2F3601968C3BE577),
|
||||
reinterpret_cast<Il2CppMethodPointer>(ReversePInvokeWrapper_DeflateStreamNative_UnmanagedRead_m321A2621068F1C9509594A4D8F405F4F12C1CEB3),
|
||||
reinterpret_cast<Il2CppMethodPointer>(ReversePInvokeWrapper_DeflateStreamNative_UnmanagedWrite_mB0AD438266A9DD2813715E8BC90BF07DC7A02F52),
|
||||
reinterpret_cast<Il2CppMethodPointer>(ReversePInvokeWrapper_OSSpecificSynchronizationContext_InvocationEntry_mF93C3CF6DBEC86E377576D840CAF517CB6E4D7E3),
|
||||
};
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,117 @@
|
||||
#include "pch-c.h"
|
||||
#ifndef _MSC_VER
|
||||
# include <alloca.h>
|
||||
#else
|
||||
# include <malloc.h>
|
||||
#endif
|
||||
|
||||
|
||||
#include "codegen/il2cpp-codegen-metadata.h"
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// 0x00000001 System.Void Mono.Security.ASN1::.ctor(System.Byte)
|
||||
extern void ASN1__ctor_mA9AE2197367C1E13DBFDA67E0A383167F52CC114 (void);
|
||||
// 0x00000002 System.Void Mono.Security.ASN1::.ctor(System.Byte,System.Byte[])
|
||||
extern void ASN1__ctor_mAA538F9E1BE0DE739E9747BC3BC71DC030B018AA (void);
|
||||
// 0x00000003 System.Void Mono.Security.ASN1::.ctor(System.Byte[])
|
||||
extern void ASN1__ctor_m950BFCCF44A987ACBA12142624AA222200EE503E (void);
|
||||
// 0x00000004 System.Int32 Mono.Security.ASN1::get_Count()
|
||||
extern void ASN1_get_Count_mBE45E73126FAD2694E9059CAC53B7AC9A5F60833 (void);
|
||||
// 0x00000005 System.Byte Mono.Security.ASN1::get_Tag()
|
||||
extern void ASN1_get_Tag_m1984CF0DDF54424E61BA3650D93CBA0DCB58F232 (void);
|
||||
// 0x00000006 System.Byte[] Mono.Security.ASN1::get_Value()
|
||||
extern void ASN1_get_Value_mA6F9BE5AC19AC060AC42673C8FD5AA864EA046B6 (void);
|
||||
// 0x00000007 System.Void Mono.Security.ASN1::set_Value(System.Byte[])
|
||||
extern void ASN1_set_Value_mAFFA885810928715B379EAD478AA3961E8ACD589 (void);
|
||||
// 0x00000008 Mono.Security.ASN1 Mono.Security.ASN1::Add(Mono.Security.ASN1)
|
||||
extern void ASN1_Add_m4C61487A6CCF48D5CEB0D97B248FE31F9FCD849F (void);
|
||||
// 0x00000009 System.Byte[] Mono.Security.ASN1::GetBytes()
|
||||
extern void ASN1_GetBytes_m3B7DABFDBE6BF7F9C926E4C8A16FC6BE6D1CE67B (void);
|
||||
// 0x0000000A System.Void Mono.Security.ASN1::Decode(System.Byte[],System.Int32&,System.Int32)
|
||||
extern void ASN1_Decode_mC4CF3CB2CC1DB454AA9C720BA79520956FB1F77B (void);
|
||||
// 0x0000000B System.Void Mono.Security.ASN1::DecodeTLV(System.Byte[],System.Int32&,System.Byte&,System.Int32&,System.Byte[]&)
|
||||
extern void ASN1_DecodeTLV_mD4465394202DA7B0D37B9453CDE039233969E9DF (void);
|
||||
// 0x0000000C Mono.Security.ASN1 Mono.Security.ASN1::get_Item(System.Int32)
|
||||
extern void ASN1_get_Item_mF105DA24F3BE9FA3697229CF99B1602B736B647F (void);
|
||||
// 0x0000000D System.String Mono.Security.ASN1::ToString()
|
||||
extern void ASN1_ToString_m4995F083B02F8FEF578ECA6EE73A257821F50A00 (void);
|
||||
// 0x0000000E Mono.Security.ASN1 Mono.Security.ASN1Convert::FromInt32(System.Int32)
|
||||
extern void ASN1Convert_FromInt32_mACAC096211E525F124BE0D50D90524ADCB6EA198 (void);
|
||||
// 0x0000000F System.Int32 Mono.Security.ASN1Convert::ToInt32(Mono.Security.ASN1)
|
||||
extern void ASN1Convert_ToInt32_m956785EB4A235575C21677C16D2F6CBE54787032 (void);
|
||||
// 0x00000010 System.String Mono.Security.ASN1Convert::ToOid(Mono.Security.ASN1)
|
||||
extern void ASN1Convert_ToOid_mBCE4FD3970C556190FB00A6AD409A6ABB4C627D8 (void);
|
||||
// 0x00000011 System.Byte[] Mono.Security.BitConverterLE::GetUIntBytes(System.Byte*)
|
||||
extern void BitConverterLE_GetUIntBytes_mED0A55F565721091E851FD6108E128C3CBCB87F0 (void);
|
||||
// 0x00000012 System.Byte[] Mono.Security.BitConverterLE::GetBytes(System.Int32)
|
||||
extern void BitConverterLE_GetBytes_mEEFE00015D501FBBD32225D9C45A2C2A0673E9C7 (void);
|
||||
// 0x00000013 System.String Mono.Security.Cryptography.CryptoConvert::ToHex(System.Byte[])
|
||||
extern void CryptoConvert_ToHex_m1A0AD4D32CEEC47D3C60CB2E4D05A935C62F261A (void);
|
||||
static Il2CppMethodPointer s_methodPointers[19] =
|
||||
{
|
||||
ASN1__ctor_mA9AE2197367C1E13DBFDA67E0A383167F52CC114,
|
||||
ASN1__ctor_mAA538F9E1BE0DE739E9747BC3BC71DC030B018AA,
|
||||
ASN1__ctor_m950BFCCF44A987ACBA12142624AA222200EE503E,
|
||||
ASN1_get_Count_mBE45E73126FAD2694E9059CAC53B7AC9A5F60833,
|
||||
ASN1_get_Tag_m1984CF0DDF54424E61BA3650D93CBA0DCB58F232,
|
||||
ASN1_get_Value_mA6F9BE5AC19AC060AC42673C8FD5AA864EA046B6,
|
||||
ASN1_set_Value_mAFFA885810928715B379EAD478AA3961E8ACD589,
|
||||
ASN1_Add_m4C61487A6CCF48D5CEB0D97B248FE31F9FCD849F,
|
||||
ASN1_GetBytes_m3B7DABFDBE6BF7F9C926E4C8A16FC6BE6D1CE67B,
|
||||
ASN1_Decode_mC4CF3CB2CC1DB454AA9C720BA79520956FB1F77B,
|
||||
ASN1_DecodeTLV_mD4465394202DA7B0D37B9453CDE039233969E9DF,
|
||||
ASN1_get_Item_mF105DA24F3BE9FA3697229CF99B1602B736B647F,
|
||||
ASN1_ToString_m4995F083B02F8FEF578ECA6EE73A257821F50A00,
|
||||
ASN1Convert_FromInt32_mACAC096211E525F124BE0D50D90524ADCB6EA198,
|
||||
ASN1Convert_ToInt32_m956785EB4A235575C21677C16D2F6CBE54787032,
|
||||
ASN1Convert_ToOid_mBCE4FD3970C556190FB00A6AD409A6ABB4C627D8,
|
||||
BitConverterLE_GetUIntBytes_mED0A55F565721091E851FD6108E128C3CBCB87F0,
|
||||
BitConverterLE_GetBytes_mEEFE00015D501FBBD32225D9C45A2C2A0673E9C7,
|
||||
CryptoConvert_ToHex_m1A0AD4D32CEEC47D3C60CB2E4D05A935C62F261A,
|
||||
};
|
||||
static const int32_t s_InvokerIndices[19] =
|
||||
{
|
||||
2701,
|
||||
1282,
|
||||
2760,
|
||||
3292,
|
||||
3250,
|
||||
3311,
|
||||
2760,
|
||||
2450,
|
||||
3311,
|
||||
817,
|
||||
279,
|
||||
2448,
|
||||
3311,
|
||||
4975,
|
||||
4922,
|
||||
4978,
|
||||
4969,
|
||||
4975,
|
||||
4978,
|
||||
};
|
||||
IL2CPP_EXTERN_C const Il2CppCodeGenModule g_Mono_Security_CodeGenModule;
|
||||
const Il2CppCodeGenModule g_Mono_Security_CodeGenModule =
|
||||
{
|
||||
"Mono.Security.dll",
|
||||
19,
|
||||
s_methodPointers,
|
||||
0,
|
||||
NULL,
|
||||
s_InvokerIndices,
|
||||
0,
|
||||
NULL,
|
||||
0,
|
||||
NULL,
|
||||
0,
|
||||
NULL,
|
||||
NULL,
|
||||
NULL, // module initializer,
|
||||
NULL,
|
||||
NULL,
|
||||
NULL,
|
||||
};
|
||||
@@ -0,0 +1,717 @@
|
||||
#include "pch-cpp.hpp"
|
||||
|
||||
#ifndef _MSC_VER
|
||||
# include <alloca.h>
|
||||
#else
|
||||
# include <malloc.h>
|
||||
#endif
|
||||
|
||||
|
||||
#include <limits>
|
||||
|
||||
|
||||
|
||||
// System.IntPtr[]
|
||||
struct IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832;
|
||||
// System.Diagnostics.StackTrace[]
|
||||
struct StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF;
|
||||
// System.Type[]
|
||||
struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB;
|
||||
// System.Reflection.Binder
|
||||
struct Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235;
|
||||
// System.Configuration.ConfigurationCollectionAttribute
|
||||
struct ConfigurationCollectionAttribute_t1D7DBAAB4908B6B8F26EA1C66106A67BDE949558;
|
||||
// System.Configuration.ConfigurationElement
|
||||
struct ConfigurationElement_tAE3EE71C256825472831FFBB7F491275DFAF089E;
|
||||
// System.Configuration.ConfigurationPropertyCollection
|
||||
struct ConfigurationPropertyCollection_t1DEB95D3283BB11A46B862E9D13710ED698B6C93;
|
||||
// System.Configuration.ConfigurationSection
|
||||
struct ConfigurationSection_t0BC609F0151B160A4FAB8226679B62AF22539C3E;
|
||||
// System.Collections.IDictionary
|
||||
struct IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220;
|
||||
// System.Configuration.IgnoreSection
|
||||
struct IgnoreSection_t43A7C33C0083D18639AA3CC3D75DD93FCF1C5D97;
|
||||
// System.Reflection.MemberFilter
|
||||
struct MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553;
|
||||
// System.PlatformNotSupportedException
|
||||
struct PlatformNotSupportedException_tD2BD7EB9278518AA5FE8AE75AD5D0D4298A4631A;
|
||||
// System.Runtime.Serialization.SafeSerializationManager
|
||||
struct SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6;
|
||||
// System.String
|
||||
struct String_t;
|
||||
// System.Type
|
||||
struct Type_t;
|
||||
// System.Void
|
||||
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915;
|
||||
// System.Xml.XmlReader
|
||||
struct XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD;
|
||||
|
||||
IL2CPP_EXTERN_C RuntimeClass* PlatformNotSupportedException_tD2BD7EB9278518AA5FE8AE75AD5D0D4298A4631A_il2cpp_TypeInfo_var;
|
||||
IL2CPP_EXTERN_C const RuntimeMethod* ConfigurationElement_IsModified_m03570122B9C781EE3AFC094BDDEA82F56BE2F850_RuntimeMethod_var;
|
||||
IL2CPP_EXTERN_C const RuntimeMethod* ConfigurationElement_ResetModified_m1CCB91632C7E81454C9E3A7F259AD72C06BED4B7_RuntimeMethod_var;
|
||||
IL2CPP_EXTERN_C const RuntimeMethod* ConfigurationElement_Reset_mA1EA05A353D2606B81CF9B50BDBC9D5F9B6DF8AF_RuntimeMethod_var;
|
||||
IL2CPP_EXTERN_C const RuntimeMethod* ConfigurationElement_get_Properties_m85E584B7C5EAFA411191A245AF41DEC274DE8F93_RuntimeMethod_var;
|
||||
IL2CPP_EXTERN_C const RuntimeMethod* ConfigurationSection_DeserializeSection_m337F6D10C212ACA2900FCEFC8098393D7776A0CD_RuntimeMethod_var;
|
||||
IL2CPP_EXTERN_C const RuntimeMethod* ConfigurationSection_IsModified_m65E5503E4AB960336F17AF49AD94FDCA63EC7DD0_RuntimeMethod_var;
|
||||
IL2CPP_EXTERN_C const RuntimeMethod* ConfigurationSection_ResetModified_m3A4EF275904DF31400B33FD9C4F22537D2922844_RuntimeMethod_var;
|
||||
IL2CPP_EXTERN_C const RuntimeMethod* ConfigurationSection_SerializeSection_m4526B82EBA81F4B2A049AA668905A27C58A07540_RuntimeMethod_var;
|
||||
IL2CPP_EXTERN_C const RuntimeMethod* IgnoreSection_DeserializeSection_m622C6FAE1160DCC952A4E36FC9E2DCB9DCC34CEC_RuntimeMethod_var;
|
||||
IL2CPP_EXTERN_C const RuntimeMethod* IgnoreSection_IsModified_mB1D57799DA9AE024B99CB05766D5497A3DD8F19F_RuntimeMethod_var;
|
||||
IL2CPP_EXTERN_C const RuntimeMethod* IgnoreSection_ResetModified_m13E416D3841F85E3B334CF9EB517FFBE9F7E224C_RuntimeMethod_var;
|
||||
IL2CPP_EXTERN_C const RuntimeMethod* IgnoreSection_Reset_m8A41B00CEC8C72D608FEE005D438864B5638B84E_RuntimeMethod_var;
|
||||
IL2CPP_EXTERN_C const RuntimeMethod* IgnoreSection_SerializeSection_m12BD59834DBCACE13758DA83BD3DEF2B8A6F3DBE_RuntimeMethod_var;
|
||||
IL2CPP_EXTERN_C const RuntimeMethod* IgnoreSection__ctor_mDF97B44EFE0B08DF0D7E89F7B79553E010597066_RuntimeMethod_var;
|
||||
IL2CPP_EXTERN_C const RuntimeMethod* IgnoreSection_get_Properties_mE3DBA6242176B6E6438CEEBEB3A48319E9EFF133_RuntimeMethod_var;
|
||||
IL2CPP_EXTERN_C const RuntimeMethod* ThrowStub_ThrowNotSupportedException_mA14F496FFE8A1B92C4565A9F18F2113E1C1F2A77_RuntimeMethod_var;
|
||||
struct Exception_t_marshaled_com;
|
||||
struct Exception_t_marshaled_pinvoke;
|
||||
|
||||
|
||||
IL2CPP_EXTERN_C_BEGIN
|
||||
IL2CPP_EXTERN_C_END
|
||||
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic push
|
||||
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
||||
#pragma clang diagnostic ignored "-Wunused-variable"
|
||||
#endif
|
||||
|
||||
// <Module>
|
||||
struct U3CModuleU3E_tDA285F13E9413BF3B79A99D6E310BE9AF3444EEB
|
||||
{
|
||||
};
|
||||
|
||||
// System.Attribute
|
||||
struct Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA : public RuntimeObject
|
||||
{
|
||||
};
|
||||
|
||||
// System.Configuration.ConfigurationElement
|
||||
struct ConfigurationElement_tAE3EE71C256825472831FFBB7F491275DFAF089E : public RuntimeObject
|
||||
{
|
||||
};
|
||||
|
||||
// System.Configuration.ConfigurationPropertyCollection
|
||||
struct ConfigurationPropertyCollection_t1DEB95D3283BB11A46B862E9D13710ED698B6C93 : public RuntimeObject
|
||||
{
|
||||
};
|
||||
|
||||
// System.Configuration.ConfigurationSectionGroup
|
||||
struct ConfigurationSectionGroup_tE7948C2D31B193F4BA8828947ED3094B952C7863 : public RuntimeObject
|
||||
{
|
||||
};
|
||||
|
||||
// System.Reflection.MemberInfo
|
||||
struct MemberInfo_t : public RuntimeObject
|
||||
{
|
||||
};
|
||||
|
||||
// System.String
|
||||
struct String_t : public RuntimeObject
|
||||
{
|
||||
// System.Int32 System.String::_stringLength
|
||||
int32_t ____stringLength_4;
|
||||
// System.Char System.String::_firstChar
|
||||
Il2CppChar ____firstChar_5;
|
||||
};
|
||||
|
||||
// System.ValueType
|
||||
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F : public RuntimeObject
|
||||
{
|
||||
};
|
||||
// Native definition for P/Invoke marshalling of System.ValueType
|
||||
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_pinvoke
|
||||
{
|
||||
};
|
||||
// Native definition for COM marshalling of System.ValueType
|
||||
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_com
|
||||
{
|
||||
};
|
||||
|
||||
// System.Xml.XmlReader
|
||||
struct XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD : public RuntimeObject
|
||||
{
|
||||
};
|
||||
|
||||
// System.Boolean
|
||||
struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22
|
||||
{
|
||||
// System.Boolean System.Boolean::m_value
|
||||
bool ___m_value_0;
|
||||
};
|
||||
|
||||
// System.Configuration.ConfigurationCollectionAttribute
|
||||
struct ConfigurationCollectionAttribute_t1D7DBAAB4908B6B8F26EA1C66106A67BDE949558 : public Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA
|
||||
{
|
||||
};
|
||||
|
||||
// System.Configuration.ConfigurationElementCollection
|
||||
struct ConfigurationElementCollection_t56E8398661A85A59616301BADF13026FB1492606 : public ConfigurationElement_tAE3EE71C256825472831FFBB7F491275DFAF089E
|
||||
{
|
||||
};
|
||||
|
||||
// System.Configuration.ConfigurationSection
|
||||
struct ConfigurationSection_t0BC609F0151B160A4FAB8226679B62AF22539C3E : public ConfigurationElement_tAE3EE71C256825472831FFBB7F491275DFAF089E
|
||||
{
|
||||
};
|
||||
|
||||
// System.IntPtr
|
||||
struct IntPtr_t
|
||||
{
|
||||
// System.Void* System.IntPtr::m_value
|
||||
void* ___m_value_0;
|
||||
};
|
||||
|
||||
// System.Void
|
||||
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915
|
||||
{
|
||||
union
|
||||
{
|
||||
struct
|
||||
{
|
||||
};
|
||||
uint8_t Void_t4861ACF8F4594C3437BB48B6E56783494B843915__padding[1];
|
||||
};
|
||||
};
|
||||
|
||||
// System.Exception
|
||||
struct Exception_t : public RuntimeObject
|
||||
{
|
||||
// System.String System.Exception::_className
|
||||
String_t* ____className_1;
|
||||
// System.String System.Exception::_message
|
||||
String_t* ____message_2;
|
||||
// System.Collections.IDictionary System.Exception::_data
|
||||
RuntimeObject* ____data_3;
|
||||
// System.Exception System.Exception::_innerException
|
||||
Exception_t* ____innerException_4;
|
||||
// System.String System.Exception::_helpURL
|
||||
String_t* ____helpURL_5;
|
||||
// System.Object System.Exception::_stackTrace
|
||||
RuntimeObject* ____stackTrace_6;
|
||||
// System.String System.Exception::_stackTraceString
|
||||
String_t* ____stackTraceString_7;
|
||||
// System.String System.Exception::_remoteStackTraceString
|
||||
String_t* ____remoteStackTraceString_8;
|
||||
// System.Int32 System.Exception::_remoteStackIndex
|
||||
int32_t ____remoteStackIndex_9;
|
||||
// System.Object System.Exception::_dynamicMethods
|
||||
RuntimeObject* ____dynamicMethods_10;
|
||||
// System.Int32 System.Exception::_HResult
|
||||
int32_t ____HResult_11;
|
||||
// System.String System.Exception::_source
|
||||
String_t* ____source_12;
|
||||
// System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager
|
||||
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
|
||||
// System.Diagnostics.StackTrace[] System.Exception::captured_traces
|
||||
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
|
||||
// System.IntPtr[] System.Exception::native_trace_ips
|
||||
IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832* ___native_trace_ips_15;
|
||||
// System.Int32 System.Exception::caught_in_unmanaged
|
||||
int32_t ___caught_in_unmanaged_16;
|
||||
};
|
||||
// Native definition for P/Invoke marshalling of System.Exception
|
||||
struct Exception_t_marshaled_pinvoke
|
||||
{
|
||||
char* ____className_1;
|
||||
char* ____message_2;
|
||||
RuntimeObject* ____data_3;
|
||||
Exception_t_marshaled_pinvoke* ____innerException_4;
|
||||
char* ____helpURL_5;
|
||||
Il2CppIUnknown* ____stackTrace_6;
|
||||
char* ____stackTraceString_7;
|
||||
char* ____remoteStackTraceString_8;
|
||||
int32_t ____remoteStackIndex_9;
|
||||
Il2CppIUnknown* ____dynamicMethods_10;
|
||||
int32_t ____HResult_11;
|
||||
char* ____source_12;
|
||||
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
|
||||
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
|
||||
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
|
||||
int32_t ___caught_in_unmanaged_16;
|
||||
};
|
||||
// Native definition for COM marshalling of System.Exception
|
||||
struct Exception_t_marshaled_com
|
||||
{
|
||||
Il2CppChar* ____className_1;
|
||||
Il2CppChar* ____message_2;
|
||||
RuntimeObject* ____data_3;
|
||||
Exception_t_marshaled_com* ____innerException_4;
|
||||
Il2CppChar* ____helpURL_5;
|
||||
Il2CppIUnknown* ____stackTrace_6;
|
||||
Il2CppChar* ____stackTraceString_7;
|
||||
Il2CppChar* ____remoteStackTraceString_8;
|
||||
int32_t ____remoteStackIndex_9;
|
||||
Il2CppIUnknown* ____dynamicMethods_10;
|
||||
int32_t ____HResult_11;
|
||||
Il2CppChar* ____source_12;
|
||||
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
|
||||
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
|
||||
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
|
||||
int32_t ___caught_in_unmanaged_16;
|
||||
};
|
||||
|
||||
// System.Configuration.IgnoreSection
|
||||
struct IgnoreSection_t43A7C33C0083D18639AA3CC3D75DD93FCF1C5D97 : public ConfigurationSection_t0BC609F0151B160A4FAB8226679B62AF22539C3E
|
||||
{
|
||||
};
|
||||
|
||||
// System.RuntimeTypeHandle
|
||||
struct RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B
|
||||
{
|
||||
// System.IntPtr System.RuntimeTypeHandle::value
|
||||
intptr_t ___value_0;
|
||||
};
|
||||
|
||||
// System.SystemException
|
||||
struct SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 : public Exception_t
|
||||
{
|
||||
};
|
||||
|
||||
// System.Type
|
||||
struct Type_t : public MemberInfo_t
|
||||
{
|
||||
// System.RuntimeTypeHandle System.Type::_impl
|
||||
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ____impl_8;
|
||||
};
|
||||
|
||||
// System.InvalidOperationException
|
||||
struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
||||
{
|
||||
};
|
||||
|
||||
// System.NotSupportedException
|
||||
struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
||||
{
|
||||
};
|
||||
|
||||
// System.ObjectDisposedException
|
||||
struct ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB : public InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB
|
||||
{
|
||||
// System.String System.ObjectDisposedException::_objectName
|
||||
String_t* ____objectName_18;
|
||||
};
|
||||
|
||||
// System.PlatformNotSupportedException
|
||||
struct PlatformNotSupportedException_tD2BD7EB9278518AA5FE8AE75AD5D0D4298A4631A : public NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A
|
||||
{
|
||||
};
|
||||
|
||||
// Unity.ThrowStub
|
||||
struct ThrowStub_t9161280E38728A40D9B1A975AEE62E89C379E400 : public ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB
|
||||
{
|
||||
};
|
||||
|
||||
// <Module>
|
||||
|
||||
// <Module>
|
||||
|
||||
// System.Configuration.ConfigurationElement
|
||||
|
||||
// System.Configuration.ConfigurationElement
|
||||
|
||||
// System.Configuration.ConfigurationPropertyCollection
|
||||
|
||||
// System.Configuration.ConfigurationPropertyCollection
|
||||
|
||||
// System.Configuration.ConfigurationSectionGroup
|
||||
|
||||
// System.Configuration.ConfigurationSectionGroup
|
||||
|
||||
// System.String
|
||||
struct String_t_StaticFields
|
||||
{
|
||||
// System.String System.String::Empty
|
||||
String_t* ___Empty_6;
|
||||
};
|
||||
|
||||
// System.String
|
||||
|
||||
// System.Xml.XmlReader
|
||||
struct XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_StaticFields
|
||||
{
|
||||
// System.UInt32 System.Xml.XmlReader::IsTextualNodeBitmap
|
||||
uint32_t ___IsTextualNodeBitmap_0;
|
||||
// System.UInt32 System.Xml.XmlReader::CanReadContentAsBitmap
|
||||
uint32_t ___CanReadContentAsBitmap_1;
|
||||
// System.UInt32 System.Xml.XmlReader::HasValueBitmap
|
||||
uint32_t ___HasValueBitmap_2;
|
||||
};
|
||||
|
||||
// System.Xml.XmlReader
|
||||
|
||||
// System.Boolean
|
||||
struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_StaticFields
|
||||
{
|
||||
// System.String System.Boolean::TrueString
|
||||
String_t* ___TrueString_5;
|
||||
// System.String System.Boolean::FalseString
|
||||
String_t* ___FalseString_6;
|
||||
};
|
||||
|
||||
// System.Boolean
|
||||
|
||||
// System.Configuration.ConfigurationCollectionAttribute
|
||||
|
||||
// System.Configuration.ConfigurationCollectionAttribute
|
||||
|
||||
// System.Configuration.ConfigurationElementCollection
|
||||
|
||||
// System.Configuration.ConfigurationElementCollection
|
||||
|
||||
// System.Configuration.ConfigurationSection
|
||||
|
||||
// System.Configuration.ConfigurationSection
|
||||
|
||||
// System.Void
|
||||
|
||||
// System.Void
|
||||
|
||||
// System.Configuration.IgnoreSection
|
||||
|
||||
// System.Configuration.IgnoreSection
|
||||
|
||||
// System.Type
|
||||
struct Type_t_StaticFields
|
||||
{
|
||||
// System.Reflection.Binder modreq(System.Runtime.CompilerServices.IsVolatile) System.Type::s_defaultBinder
|
||||
Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235* ___s_defaultBinder_0;
|
||||
// System.Char System.Type::Delimiter
|
||||
Il2CppChar ___Delimiter_1;
|
||||
// System.Type[] System.Type::EmptyTypes
|
||||
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___EmptyTypes_2;
|
||||
// System.Object System.Type::Missing
|
||||
RuntimeObject* ___Missing_3;
|
||||
// System.Reflection.MemberFilter System.Type::FilterAttribute
|
||||
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterAttribute_4;
|
||||
// System.Reflection.MemberFilter System.Type::FilterName
|
||||
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterName_5;
|
||||
// System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase
|
||||
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterNameIgnoreCase_6;
|
||||
};
|
||||
|
||||
// System.Type
|
||||
|
||||
// System.PlatformNotSupportedException
|
||||
|
||||
// System.PlatformNotSupportedException
|
||||
|
||||
// Unity.ThrowStub
|
||||
|
||||
// Unity.ThrowStub
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic pop
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
// System.Void System.PlatformNotSupportedException::.ctor()
|
||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlatformNotSupportedException__ctor_mD5DBE8E9A6FF4B75EF02671029C6D67A51EAFBD1 (PlatformNotSupportedException_tD2BD7EB9278518AA5FE8AE75AD5D0D4298A4631A* __this, const RuntimeMethod* method) ;
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic push
|
||||
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
||||
#pragma clang diagnostic ignored "-Wunused-variable"
|
||||
#endif
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic pop
|
||||
#endif
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic push
|
||||
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
||||
#pragma clang diagnostic ignored "-Wunused-variable"
|
||||
#endif
|
||||
// System.Configuration.ConfigurationPropertyCollection System.Configuration.ConfigurationElement::get_Properties()
|
||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfigurationPropertyCollection_t1DEB95D3283BB11A46B862E9D13710ED698B6C93* ConfigurationElement_get_Properties_m85E584B7C5EAFA411191A245AF41DEC274DE8F93 (ConfigurationElement_tAE3EE71C256825472831FFBB7F491275DFAF089E* __this, const RuntimeMethod* method)
|
||||
{
|
||||
static bool s_Il2CppMethodInitialized;
|
||||
if (!s_Il2CppMethodInitialized)
|
||||
{
|
||||
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConfigurationElement_get_Properties_m85E584B7C5EAFA411191A245AF41DEC274DE8F93_RuntimeMethod_var);
|
||||
s_Il2CppMethodInitialized = true;
|
||||
}
|
||||
{
|
||||
il2cpp_codegen_raise_profile_exception(ConfigurationElement_get_Properties_m85E584B7C5EAFA411191A245AF41DEC274DE8F93_RuntimeMethod_var);
|
||||
return (ConfigurationPropertyCollection_t1DEB95D3283BB11A46B862E9D13710ED698B6C93*)NULL;
|
||||
}
|
||||
}
|
||||
// System.Boolean System.Configuration.ConfigurationElement::IsModified()
|
||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConfigurationElement_IsModified_m03570122B9C781EE3AFC094BDDEA82F56BE2F850 (ConfigurationElement_tAE3EE71C256825472831FFBB7F491275DFAF089E* __this, const RuntimeMethod* method)
|
||||
{
|
||||
static bool s_Il2CppMethodInitialized;
|
||||
if (!s_Il2CppMethodInitialized)
|
||||
{
|
||||
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConfigurationElement_IsModified_m03570122B9C781EE3AFC094BDDEA82F56BE2F850_RuntimeMethod_var);
|
||||
s_Il2CppMethodInitialized = true;
|
||||
}
|
||||
bool V_0 = false;
|
||||
{
|
||||
il2cpp_codegen_raise_profile_exception(ConfigurationElement_IsModified_m03570122B9C781EE3AFC094BDDEA82F56BE2F850_RuntimeMethod_var);
|
||||
il2cpp_codegen_initobj((&V_0), sizeof(bool));
|
||||
bool L_0 = V_0;
|
||||
return L_0;
|
||||
}
|
||||
}
|
||||
// System.Void System.Configuration.ConfigurationElement::Reset(System.Configuration.ConfigurationElement)
|
||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfigurationElement_Reset_mA1EA05A353D2606B81CF9B50BDBC9D5F9B6DF8AF (ConfigurationElement_tAE3EE71C256825472831FFBB7F491275DFAF089E* __this, ConfigurationElement_tAE3EE71C256825472831FFBB7F491275DFAF089E* ___0_parentElement, const RuntimeMethod* method)
|
||||
{
|
||||
static bool s_Il2CppMethodInitialized;
|
||||
if (!s_Il2CppMethodInitialized)
|
||||
{
|
||||
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConfigurationElement_Reset_mA1EA05A353D2606B81CF9B50BDBC9D5F9B6DF8AF_RuntimeMethod_var);
|
||||
s_Il2CppMethodInitialized = true;
|
||||
}
|
||||
{
|
||||
il2cpp_codegen_raise_profile_exception(ConfigurationElement_Reset_mA1EA05A353D2606B81CF9B50BDBC9D5F9B6DF8AF_RuntimeMethod_var);
|
||||
return;
|
||||
}
|
||||
}
|
||||
// System.Void System.Configuration.ConfigurationElement::ResetModified()
|
||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfigurationElement_ResetModified_m1CCB91632C7E81454C9E3A7F259AD72C06BED4B7 (ConfigurationElement_tAE3EE71C256825472831FFBB7F491275DFAF089E* __this, const RuntimeMethod* method)
|
||||
{
|
||||
static bool s_Il2CppMethodInitialized;
|
||||
if (!s_Il2CppMethodInitialized)
|
||||
{
|
||||
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConfigurationElement_ResetModified_m1CCB91632C7E81454C9E3A7F259AD72C06BED4B7_RuntimeMethod_var);
|
||||
s_Il2CppMethodInitialized = true;
|
||||
}
|
||||
{
|
||||
il2cpp_codegen_raise_profile_exception(ConfigurationElement_ResetModified_m1CCB91632C7E81454C9E3A7F259AD72C06BED4B7_RuntimeMethod_var);
|
||||
return;
|
||||
}
|
||||
}
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic pop
|
||||
#endif
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic push
|
||||
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
||||
#pragma clang diagnostic ignored "-Wunused-variable"
|
||||
#endif
|
||||
// System.Void System.Configuration.ConfigurationSection::DeserializeSection(System.Xml.XmlReader)
|
||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfigurationSection_DeserializeSection_m337F6D10C212ACA2900FCEFC8098393D7776A0CD (ConfigurationSection_t0BC609F0151B160A4FAB8226679B62AF22539C3E* __this, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___0_reader, const RuntimeMethod* method)
|
||||
{
|
||||
static bool s_Il2CppMethodInitialized;
|
||||
if (!s_Il2CppMethodInitialized)
|
||||
{
|
||||
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConfigurationSection_DeserializeSection_m337F6D10C212ACA2900FCEFC8098393D7776A0CD_RuntimeMethod_var);
|
||||
s_Il2CppMethodInitialized = true;
|
||||
}
|
||||
{
|
||||
il2cpp_codegen_raise_profile_exception(ConfigurationSection_DeserializeSection_m337F6D10C212ACA2900FCEFC8098393D7776A0CD_RuntimeMethod_var);
|
||||
return;
|
||||
}
|
||||
}
|
||||
// System.Boolean System.Configuration.ConfigurationSection::IsModified()
|
||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConfigurationSection_IsModified_m65E5503E4AB960336F17AF49AD94FDCA63EC7DD0 (ConfigurationSection_t0BC609F0151B160A4FAB8226679B62AF22539C3E* __this, const RuntimeMethod* method)
|
||||
{
|
||||
static bool s_Il2CppMethodInitialized;
|
||||
if (!s_Il2CppMethodInitialized)
|
||||
{
|
||||
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConfigurationSection_IsModified_m65E5503E4AB960336F17AF49AD94FDCA63EC7DD0_RuntimeMethod_var);
|
||||
s_Il2CppMethodInitialized = true;
|
||||
}
|
||||
bool V_0 = false;
|
||||
{
|
||||
il2cpp_codegen_raise_profile_exception(ConfigurationSection_IsModified_m65E5503E4AB960336F17AF49AD94FDCA63EC7DD0_RuntimeMethod_var);
|
||||
il2cpp_codegen_initobj((&V_0), sizeof(bool));
|
||||
bool L_0 = V_0;
|
||||
return L_0;
|
||||
}
|
||||
}
|
||||
// System.Void System.Configuration.ConfigurationSection::ResetModified()
|
||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfigurationSection_ResetModified_m3A4EF275904DF31400B33FD9C4F22537D2922844 (ConfigurationSection_t0BC609F0151B160A4FAB8226679B62AF22539C3E* __this, const RuntimeMethod* method)
|
||||
{
|
||||
static bool s_Il2CppMethodInitialized;
|
||||
if (!s_Il2CppMethodInitialized)
|
||||
{
|
||||
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConfigurationSection_ResetModified_m3A4EF275904DF31400B33FD9C4F22537D2922844_RuntimeMethod_var);
|
||||
s_Il2CppMethodInitialized = true;
|
||||
}
|
||||
{
|
||||
il2cpp_codegen_raise_profile_exception(ConfigurationSection_ResetModified_m3A4EF275904DF31400B33FD9C4F22537D2922844_RuntimeMethod_var);
|
||||
return;
|
||||
}
|
||||
}
|
||||
// System.String System.Configuration.ConfigurationSection::SerializeSection(System.Configuration.ConfigurationElement,System.String,System.Configuration.ConfigurationSaveMode)
|
||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ConfigurationSection_SerializeSection_m4526B82EBA81F4B2A049AA668905A27C58A07540 (ConfigurationSection_t0BC609F0151B160A4FAB8226679B62AF22539C3E* __this, ConfigurationElement_tAE3EE71C256825472831FFBB7F491275DFAF089E* ___0_parentElement, String_t* ___1_name, int32_t ___2_saveMode, const RuntimeMethod* method)
|
||||
{
|
||||
static bool s_Il2CppMethodInitialized;
|
||||
if (!s_Il2CppMethodInitialized)
|
||||
{
|
||||
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConfigurationSection_SerializeSection_m4526B82EBA81F4B2A049AA668905A27C58A07540_RuntimeMethod_var);
|
||||
s_Il2CppMethodInitialized = true;
|
||||
}
|
||||
{
|
||||
il2cpp_codegen_raise_profile_exception(ConfigurationSection_SerializeSection_m4526B82EBA81F4B2A049AA668905A27C58A07540_RuntimeMethod_var);
|
||||
return (String_t*)NULL;
|
||||
}
|
||||
}
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic pop
|
||||
#endif
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic push
|
||||
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
||||
#pragma clang diagnostic ignored "-Wunused-variable"
|
||||
#endif
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic pop
|
||||
#endif
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic push
|
||||
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
||||
#pragma clang diagnostic ignored "-Wunused-variable"
|
||||
#endif
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic pop
|
||||
#endif
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic push
|
||||
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
||||
#pragma clang diagnostic ignored "-Wunused-variable"
|
||||
#endif
|
||||
// System.Void System.Configuration.ConfigurationCollectionAttribute::.ctor(System.Type)
|
||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfigurationCollectionAttribute__ctor_m1C1204D379E75BB9D1AC794CAD78B0C95FDEDB8D (ConfigurationCollectionAttribute_t1D7DBAAB4908B6B8F26EA1C66106A67BDE949558* __this, Type_t* ___0_itemType, const RuntimeMethod* method)
|
||||
{
|
||||
{
|
||||
return;
|
||||
}
|
||||
}
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic pop
|
||||
#endif
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic push
|
||||
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
||||
#pragma clang diagnostic ignored "-Wunused-variable"
|
||||
#endif
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic pop
|
||||
#endif
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic push
|
||||
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
||||
#pragma clang diagnostic ignored "-Wunused-variable"
|
||||
#endif
|
||||
// System.Void System.Configuration.IgnoreSection::.ctor()
|
||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IgnoreSection__ctor_mDF97B44EFE0B08DF0D7E89F7B79553E010597066 (IgnoreSection_t43A7C33C0083D18639AA3CC3D75DD93FCF1C5D97* __this, const RuntimeMethod* method)
|
||||
{
|
||||
static bool s_Il2CppMethodInitialized;
|
||||
if (!s_Il2CppMethodInitialized)
|
||||
{
|
||||
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IgnoreSection__ctor_mDF97B44EFE0B08DF0D7E89F7B79553E010597066_RuntimeMethod_var);
|
||||
s_Il2CppMethodInitialized = true;
|
||||
}
|
||||
{
|
||||
il2cpp_codegen_raise_profile_exception(IgnoreSection__ctor_mDF97B44EFE0B08DF0D7E89F7B79553E010597066_RuntimeMethod_var);
|
||||
return;
|
||||
}
|
||||
}
|
||||
// System.Configuration.ConfigurationPropertyCollection System.Configuration.IgnoreSection::get_Properties()
|
||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfigurationPropertyCollection_t1DEB95D3283BB11A46B862E9D13710ED698B6C93* IgnoreSection_get_Properties_mE3DBA6242176B6E6438CEEBEB3A48319E9EFF133 (IgnoreSection_t43A7C33C0083D18639AA3CC3D75DD93FCF1C5D97* __this, const RuntimeMethod* method)
|
||||
{
|
||||
static bool s_Il2CppMethodInitialized;
|
||||
if (!s_Il2CppMethodInitialized)
|
||||
{
|
||||
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IgnoreSection_get_Properties_mE3DBA6242176B6E6438CEEBEB3A48319E9EFF133_RuntimeMethod_var);
|
||||
s_Il2CppMethodInitialized = true;
|
||||
}
|
||||
{
|
||||
il2cpp_codegen_raise_profile_exception(IgnoreSection_get_Properties_mE3DBA6242176B6E6438CEEBEB3A48319E9EFF133_RuntimeMethod_var);
|
||||
return (ConfigurationPropertyCollection_t1DEB95D3283BB11A46B862E9D13710ED698B6C93*)NULL;
|
||||
}
|
||||
}
|
||||
// System.Void System.Configuration.IgnoreSection::DeserializeSection(System.Xml.XmlReader)
|
||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IgnoreSection_DeserializeSection_m622C6FAE1160DCC952A4E36FC9E2DCB9DCC34CEC (IgnoreSection_t43A7C33C0083D18639AA3CC3D75DD93FCF1C5D97* __this, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___0_xmlReader, const RuntimeMethod* method)
|
||||
{
|
||||
static bool s_Il2CppMethodInitialized;
|
||||
if (!s_Il2CppMethodInitialized)
|
||||
{
|
||||
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IgnoreSection_DeserializeSection_m622C6FAE1160DCC952A4E36FC9E2DCB9DCC34CEC_RuntimeMethod_var);
|
||||
s_Il2CppMethodInitialized = true;
|
||||
}
|
||||
{
|
||||
il2cpp_codegen_raise_profile_exception(IgnoreSection_DeserializeSection_m622C6FAE1160DCC952A4E36FC9E2DCB9DCC34CEC_RuntimeMethod_var);
|
||||
return;
|
||||
}
|
||||
}
|
||||
// System.Boolean System.Configuration.IgnoreSection::IsModified()
|
||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IgnoreSection_IsModified_mB1D57799DA9AE024B99CB05766D5497A3DD8F19F (IgnoreSection_t43A7C33C0083D18639AA3CC3D75DD93FCF1C5D97* __this, const RuntimeMethod* method)
|
||||
{
|
||||
static bool s_Il2CppMethodInitialized;
|
||||
if (!s_Il2CppMethodInitialized)
|
||||
{
|
||||
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IgnoreSection_IsModified_mB1D57799DA9AE024B99CB05766D5497A3DD8F19F_RuntimeMethod_var);
|
||||
s_Il2CppMethodInitialized = true;
|
||||
}
|
||||
bool V_0 = false;
|
||||
{
|
||||
il2cpp_codegen_raise_profile_exception(IgnoreSection_IsModified_mB1D57799DA9AE024B99CB05766D5497A3DD8F19F_RuntimeMethod_var);
|
||||
il2cpp_codegen_initobj((&V_0), sizeof(bool));
|
||||
bool L_0 = V_0;
|
||||
return L_0;
|
||||
}
|
||||
}
|
||||
// System.Void System.Configuration.IgnoreSection::Reset(System.Configuration.ConfigurationElement)
|
||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IgnoreSection_Reset_m8A41B00CEC8C72D608FEE005D438864B5638B84E (IgnoreSection_t43A7C33C0083D18639AA3CC3D75DD93FCF1C5D97* __this, ConfigurationElement_tAE3EE71C256825472831FFBB7F491275DFAF089E* ___0_parentSection, const RuntimeMethod* method)
|
||||
{
|
||||
static bool s_Il2CppMethodInitialized;
|
||||
if (!s_Il2CppMethodInitialized)
|
||||
{
|
||||
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IgnoreSection_Reset_m8A41B00CEC8C72D608FEE005D438864B5638B84E_RuntimeMethod_var);
|
||||
s_Il2CppMethodInitialized = true;
|
||||
}
|
||||
{
|
||||
il2cpp_codegen_raise_profile_exception(IgnoreSection_Reset_m8A41B00CEC8C72D608FEE005D438864B5638B84E_RuntimeMethod_var);
|
||||
return;
|
||||
}
|
||||
}
|
||||
// System.Void System.Configuration.IgnoreSection::ResetModified()
|
||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IgnoreSection_ResetModified_m13E416D3841F85E3B334CF9EB517FFBE9F7E224C (IgnoreSection_t43A7C33C0083D18639AA3CC3D75DD93FCF1C5D97* __this, const RuntimeMethod* method)
|
||||
{
|
||||
static bool s_Il2CppMethodInitialized;
|
||||
if (!s_Il2CppMethodInitialized)
|
||||
{
|
||||
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IgnoreSection_ResetModified_m13E416D3841F85E3B334CF9EB517FFBE9F7E224C_RuntimeMethod_var);
|
||||
s_Il2CppMethodInitialized = true;
|
||||
}
|
||||
{
|
||||
il2cpp_codegen_raise_profile_exception(IgnoreSection_ResetModified_m13E416D3841F85E3B334CF9EB517FFBE9F7E224C_RuntimeMethod_var);
|
||||
return;
|
||||
}
|
||||
}
|
||||
// System.String System.Configuration.IgnoreSection::SerializeSection(System.Configuration.ConfigurationElement,System.String,System.Configuration.ConfigurationSaveMode)
|
||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* IgnoreSection_SerializeSection_m12BD59834DBCACE13758DA83BD3DEF2B8A6F3DBE (IgnoreSection_t43A7C33C0083D18639AA3CC3D75DD93FCF1C5D97* __this, ConfigurationElement_tAE3EE71C256825472831FFBB7F491275DFAF089E* ___0_parentSection, String_t* ___1_name, int32_t ___2_saveMode, const RuntimeMethod* method)
|
||||
{
|
||||
static bool s_Il2CppMethodInitialized;
|
||||
if (!s_Il2CppMethodInitialized)
|
||||
{
|
||||
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IgnoreSection_SerializeSection_m12BD59834DBCACE13758DA83BD3DEF2B8A6F3DBE_RuntimeMethod_var);
|
||||
s_Il2CppMethodInitialized = true;
|
||||
}
|
||||
{
|
||||
il2cpp_codegen_raise_profile_exception(IgnoreSection_SerializeSection_m12BD59834DBCACE13758DA83BD3DEF2B8A6F3DBE_RuntimeMethod_var);
|
||||
return (String_t*)NULL;
|
||||
}
|
||||
}
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic pop
|
||||
#endif
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic push
|
||||
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
||||
#pragma clang diagnostic ignored "-Wunused-variable"
|
||||
#endif
|
||||
// System.Void Unity.ThrowStub::ThrowNotSupportedException()
|
||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowStub_ThrowNotSupportedException_mA14F496FFE8A1B92C4565A9F18F2113E1C1F2A77 (const RuntimeMethod* method)
|
||||
{
|
||||
{
|
||||
PlatformNotSupportedException_tD2BD7EB9278518AA5FE8AE75AD5D0D4298A4631A* L_0 = (PlatformNotSupportedException_tD2BD7EB9278518AA5FE8AE75AD5D0D4298A4631A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&PlatformNotSupportedException_tD2BD7EB9278518AA5FE8AE75AD5D0D4298A4631A_il2cpp_TypeInfo_var)));
|
||||
NullCheck(L_0);
|
||||
PlatformNotSupportedException__ctor_mD5DBE8E9A6FF4B75EF02671029C6D67A51EAFBD1(L_0, NULL);
|
||||
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ThrowStub_ThrowNotSupportedException_mA14F496FFE8A1B92C4565A9F18F2113E1C1F2A77_RuntimeMethod_var)));
|
||||
}
|
||||
}
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic pop
|
||||
#endif
|
||||
@@ -0,0 +1,109 @@
|
||||
#include "pch-c.h"
|
||||
#ifndef _MSC_VER
|
||||
# include <alloca.h>
|
||||
#else
|
||||
# include <malloc.h>
|
||||
#endif
|
||||
|
||||
|
||||
#include "codegen/il2cpp-codegen-metadata.h"
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// 0x00000001 System.Configuration.ConfigurationPropertyCollection System.Configuration.ConfigurationElement::get_Properties()
|
||||
extern void ConfigurationElement_get_Properties_m85E584B7C5EAFA411191A245AF41DEC274DE8F93 (void);
|
||||
// 0x00000002 System.Boolean System.Configuration.ConfigurationElement::IsModified()
|
||||
extern void ConfigurationElement_IsModified_m03570122B9C781EE3AFC094BDDEA82F56BE2F850 (void);
|
||||
// 0x00000003 System.Void System.Configuration.ConfigurationElement::Reset(System.Configuration.ConfigurationElement)
|
||||
extern void ConfigurationElement_Reset_mA1EA05A353D2606B81CF9B50BDBC9D5F9B6DF8AF (void);
|
||||
// 0x00000004 System.Void System.Configuration.ConfigurationElement::ResetModified()
|
||||
extern void ConfigurationElement_ResetModified_m1CCB91632C7E81454C9E3A7F259AD72C06BED4B7 (void);
|
||||
// 0x00000005 System.Void System.Configuration.ConfigurationSection::DeserializeSection(System.Xml.XmlReader)
|
||||
extern void ConfigurationSection_DeserializeSection_m337F6D10C212ACA2900FCEFC8098393D7776A0CD (void);
|
||||
// 0x00000006 System.Boolean System.Configuration.ConfigurationSection::IsModified()
|
||||
extern void ConfigurationSection_IsModified_m65E5503E4AB960336F17AF49AD94FDCA63EC7DD0 (void);
|
||||
// 0x00000007 System.Void System.Configuration.ConfigurationSection::ResetModified()
|
||||
extern void ConfigurationSection_ResetModified_m3A4EF275904DF31400B33FD9C4F22537D2922844 (void);
|
||||
// 0x00000008 System.String System.Configuration.ConfigurationSection::SerializeSection(System.Configuration.ConfigurationElement,System.String,System.Configuration.ConfigurationSaveMode)
|
||||
extern void ConfigurationSection_SerializeSection_m4526B82EBA81F4B2A049AA668905A27C58A07540 (void);
|
||||
// 0x00000009 System.Void System.Configuration.ConfigurationCollectionAttribute::.ctor(System.Type)
|
||||
extern void ConfigurationCollectionAttribute__ctor_m1C1204D379E75BB9D1AC794CAD78B0C95FDEDB8D (void);
|
||||
// 0x0000000A System.Void System.Configuration.IgnoreSection::.ctor()
|
||||
extern void IgnoreSection__ctor_mDF97B44EFE0B08DF0D7E89F7B79553E010597066 (void);
|
||||
// 0x0000000B System.Configuration.ConfigurationPropertyCollection System.Configuration.IgnoreSection::get_Properties()
|
||||
extern void IgnoreSection_get_Properties_mE3DBA6242176B6E6438CEEBEB3A48319E9EFF133 (void);
|
||||
// 0x0000000C System.Void System.Configuration.IgnoreSection::DeserializeSection(System.Xml.XmlReader)
|
||||
extern void IgnoreSection_DeserializeSection_m622C6FAE1160DCC952A4E36FC9E2DCB9DCC34CEC (void);
|
||||
// 0x0000000D System.Boolean System.Configuration.IgnoreSection::IsModified()
|
||||
extern void IgnoreSection_IsModified_mB1D57799DA9AE024B99CB05766D5497A3DD8F19F (void);
|
||||
// 0x0000000E System.Void System.Configuration.IgnoreSection::Reset(System.Configuration.ConfigurationElement)
|
||||
extern void IgnoreSection_Reset_m8A41B00CEC8C72D608FEE005D438864B5638B84E (void);
|
||||
// 0x0000000F System.Void System.Configuration.IgnoreSection::ResetModified()
|
||||
extern void IgnoreSection_ResetModified_m13E416D3841F85E3B334CF9EB517FFBE9F7E224C (void);
|
||||
// 0x00000010 System.String System.Configuration.IgnoreSection::SerializeSection(System.Configuration.ConfigurationElement,System.String,System.Configuration.ConfigurationSaveMode)
|
||||
extern void IgnoreSection_SerializeSection_m12BD59834DBCACE13758DA83BD3DEF2B8A6F3DBE (void);
|
||||
// 0x00000011 System.Void Unity.ThrowStub::ThrowNotSupportedException()
|
||||
extern void ThrowStub_ThrowNotSupportedException_mA14F496FFE8A1B92C4565A9F18F2113E1C1F2A77 (void);
|
||||
static Il2CppMethodPointer s_methodPointers[17] =
|
||||
{
|
||||
ConfigurationElement_get_Properties_m85E584B7C5EAFA411191A245AF41DEC274DE8F93,
|
||||
ConfigurationElement_IsModified_m03570122B9C781EE3AFC094BDDEA82F56BE2F850,
|
||||
ConfigurationElement_Reset_mA1EA05A353D2606B81CF9B50BDBC9D5F9B6DF8AF,
|
||||
ConfigurationElement_ResetModified_m1CCB91632C7E81454C9E3A7F259AD72C06BED4B7,
|
||||
ConfigurationSection_DeserializeSection_m337F6D10C212ACA2900FCEFC8098393D7776A0CD,
|
||||
ConfigurationSection_IsModified_m65E5503E4AB960336F17AF49AD94FDCA63EC7DD0,
|
||||
ConfigurationSection_ResetModified_m3A4EF275904DF31400B33FD9C4F22537D2922844,
|
||||
ConfigurationSection_SerializeSection_m4526B82EBA81F4B2A049AA668905A27C58A07540,
|
||||
ConfigurationCollectionAttribute__ctor_m1C1204D379E75BB9D1AC794CAD78B0C95FDEDB8D,
|
||||
IgnoreSection__ctor_mDF97B44EFE0B08DF0D7E89F7B79553E010597066,
|
||||
IgnoreSection_get_Properties_mE3DBA6242176B6E6438CEEBEB3A48319E9EFF133,
|
||||
IgnoreSection_DeserializeSection_m622C6FAE1160DCC952A4E36FC9E2DCB9DCC34CEC,
|
||||
IgnoreSection_IsModified_mB1D57799DA9AE024B99CB05766D5497A3DD8F19F,
|
||||
IgnoreSection_Reset_m8A41B00CEC8C72D608FEE005D438864B5638B84E,
|
||||
IgnoreSection_ResetModified_m13E416D3841F85E3B334CF9EB517FFBE9F7E224C,
|
||||
IgnoreSection_SerializeSection_m12BD59834DBCACE13758DA83BD3DEF2B8A6F3DBE,
|
||||
ThrowStub_ThrowNotSupportedException_mA14F496FFE8A1B92C4565A9F18F2113E1C1F2A77,
|
||||
};
|
||||
static const int32_t s_InvokerIndices[17] =
|
||||
{
|
||||
3311,
|
||||
3250,
|
||||
2760,
|
||||
3395,
|
||||
2760,
|
||||
3250,
|
||||
3395,
|
||||
715,
|
||||
2760,
|
||||
3395,
|
||||
3311,
|
||||
2760,
|
||||
3250,
|
||||
2760,
|
||||
3395,
|
||||
715,
|
||||
5220,
|
||||
};
|
||||
IL2CPP_EXTERN_C const Il2CppCodeGenModule g_System_Configuration_CodeGenModule;
|
||||
const Il2CppCodeGenModule g_System_Configuration_CodeGenModule =
|
||||
{
|
||||
"System.Configuration.dll",
|
||||
17,
|
||||
s_methodPointers,
|
||||
0,
|
||||
NULL,
|
||||
s_InvokerIndices,
|
||||
0,
|
||||
NULL,
|
||||
0,
|
||||
NULL,
|
||||
0,
|
||||
NULL,
|
||||
NULL,
|
||||
NULL, // module initializer,
|
||||
NULL,
|
||||
NULL,
|
||||
NULL,
|
||||
};
|
||||
@@ -0,0 +1,683 @@
|
||||
#include "pch-cpp.hpp"
|
||||
|
||||
#ifndef _MSC_VER
|
||||
# include <alloca.h>
|
||||
#else
|
||||
# include <malloc.h>
|
||||
#endif
|
||||
|
||||
|
||||
#include <limits>
|
||||
|
||||
|
||||
struct InterfaceActionInvoker0
|
||||
{
|
||||
typedef void (*Action)(void*, const RuntimeMethod*);
|
||||
|
||||
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
|
||||
{
|
||||
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
|
||||
((Action)invokeData.methodPtr)(obj, invokeData.method);
|
||||
}
|
||||
};
|
||||
template <typename R>
|
||||
struct InterfaceFuncInvoker0
|
||||
{
|
||||
typedef R (*Func)(void*, const RuntimeMethod*);
|
||||
|
||||
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
|
||||
{
|
||||
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
|
||||
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
|
||||
}
|
||||
};
|
||||
|
||||
// System.Collections.Generic.IEnumerable`1<System.Int32>
|
||||
struct IEnumerable_1_tCE758D940790D6D0D56B457E522C195F8C413AF2;
|
||||
// System.IntPtr[]
|
||||
struct IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832;
|
||||
// System.Diagnostics.StackTrace[]
|
||||
struct StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF;
|
||||
// System.ArgumentNullException
|
||||
struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129;
|
||||
// System.Exception
|
||||
struct Exception_t;
|
||||
// System.Collections.IDictionary
|
||||
struct IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220;
|
||||
// System.InvalidOperationException
|
||||
struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB;
|
||||
// System.Runtime.Serialization.SafeSerializationManager
|
||||
struct SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6;
|
||||
// System.String
|
||||
struct String_t;
|
||||
// System.Void
|
||||
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915;
|
||||
|
||||
IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var;
|
||||
IL2CPP_EXTERN_C RuntimeClass* IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var;
|
||||
IL2CPP_EXTERN_C RuntimeClass* IEnumerable_1_tCE758D940790D6D0D56B457E522C195F8C413AF2_il2cpp_TypeInfo_var;
|
||||
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_1_tD6A90A7446DA8E6CF865EDFBBF18C1200BB6D452_il2cpp_TypeInfo_var;
|
||||
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var;
|
||||
IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var;
|
||||
IL2CPP_EXTERN_C String_t* _stringLiteral66F9618FDA792CAB23AF2D7FFB50AB2D3E393DC5;
|
||||
IL2CPP_EXTERN_C String_t* _stringLiteral9D0E978C2541B8A36DFB07E397656689CE9E713F;
|
||||
IL2CPP_EXTERN_C String_t* _stringLiteralB7E78BE66617B9AE36B6A6E170E3545EE25C1D11;
|
||||
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_Max_mF33848068459BE74BF534D16F6B678BB677EE704_RuntimeMethod_var;
|
||||
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_Min_m3D3C3E5CE25D27D94448CA832FB5AB9F702D5443_RuntimeMethod_var;
|
||||
struct Exception_t_marshaled_com;
|
||||
struct Exception_t_marshaled_pinvoke;
|
||||
|
||||
|
||||
IL2CPP_EXTERN_C_BEGIN
|
||||
IL2CPP_EXTERN_C_END
|
||||
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic push
|
||||
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
||||
#pragma clang diagnostic ignored "-Wunused-variable"
|
||||
#endif
|
||||
|
||||
// <Module>
|
||||
struct U3CModuleU3E_tA3942657997767549ED3B944EB77AFA183BBF4B9
|
||||
{
|
||||
};
|
||||
|
||||
// System.Linq.Enumerable
|
||||
struct Enumerable_t372195206D92B3F390693F9449282C31FD564C09 : public RuntimeObject
|
||||
{
|
||||
};
|
||||
|
||||
// System.Linq.Error
|
||||
struct Error_tCE0C9D928B2D2CC69DDEC1A0ECF05131938959DB : public RuntimeObject
|
||||
{
|
||||
};
|
||||
|
||||
// System.String
|
||||
struct String_t : public RuntimeObject
|
||||
{
|
||||
// System.Int32 System.String::_stringLength
|
||||
int32_t ____stringLength_4;
|
||||
// System.Char System.String::_firstChar
|
||||
Il2CppChar ____firstChar_5;
|
||||
};
|
||||
|
||||
// System.ValueType
|
||||
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F : public RuntimeObject
|
||||
{
|
||||
};
|
||||
// Native definition for P/Invoke marshalling of System.ValueType
|
||||
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_pinvoke
|
||||
{
|
||||
};
|
||||
// Native definition for COM marshalling of System.ValueType
|
||||
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_com
|
||||
{
|
||||
};
|
||||
|
||||
// System.Boolean
|
||||
struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22
|
||||
{
|
||||
// System.Boolean System.Boolean::m_value
|
||||
bool ___m_value_0;
|
||||
};
|
||||
|
||||
// System.Int32
|
||||
struct Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C
|
||||
{
|
||||
// System.Int32 System.Int32::m_value
|
||||
int32_t ___m_value_0;
|
||||
};
|
||||
|
||||
// System.IntPtr
|
||||
struct IntPtr_t
|
||||
{
|
||||
// System.Void* System.IntPtr::m_value
|
||||
void* ___m_value_0;
|
||||
};
|
||||
|
||||
// System.Void
|
||||
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915
|
||||
{
|
||||
union
|
||||
{
|
||||
struct
|
||||
{
|
||||
};
|
||||
uint8_t Void_t4861ACF8F4594C3437BB48B6E56783494B843915__padding[1];
|
||||
};
|
||||
};
|
||||
|
||||
// System.Exception
|
||||
struct Exception_t : public RuntimeObject
|
||||
{
|
||||
// System.String System.Exception::_className
|
||||
String_t* ____className_1;
|
||||
// System.String System.Exception::_message
|
||||
String_t* ____message_2;
|
||||
// System.Collections.IDictionary System.Exception::_data
|
||||
RuntimeObject* ____data_3;
|
||||
// System.Exception System.Exception::_innerException
|
||||
Exception_t* ____innerException_4;
|
||||
// System.String System.Exception::_helpURL
|
||||
String_t* ____helpURL_5;
|
||||
// System.Object System.Exception::_stackTrace
|
||||
RuntimeObject* ____stackTrace_6;
|
||||
// System.String System.Exception::_stackTraceString
|
||||
String_t* ____stackTraceString_7;
|
||||
// System.String System.Exception::_remoteStackTraceString
|
||||
String_t* ____remoteStackTraceString_8;
|
||||
// System.Int32 System.Exception::_remoteStackIndex
|
||||
int32_t ____remoteStackIndex_9;
|
||||
// System.Object System.Exception::_dynamicMethods
|
||||
RuntimeObject* ____dynamicMethods_10;
|
||||
// System.Int32 System.Exception::_HResult
|
||||
int32_t ____HResult_11;
|
||||
// System.String System.Exception::_source
|
||||
String_t* ____source_12;
|
||||
// System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager
|
||||
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
|
||||
// System.Diagnostics.StackTrace[] System.Exception::captured_traces
|
||||
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
|
||||
// System.IntPtr[] System.Exception::native_trace_ips
|
||||
IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832* ___native_trace_ips_15;
|
||||
// System.Int32 System.Exception::caught_in_unmanaged
|
||||
int32_t ___caught_in_unmanaged_16;
|
||||
};
|
||||
// Native definition for P/Invoke marshalling of System.Exception
|
||||
struct Exception_t_marshaled_pinvoke
|
||||
{
|
||||
char* ____className_1;
|
||||
char* ____message_2;
|
||||
RuntimeObject* ____data_3;
|
||||
Exception_t_marshaled_pinvoke* ____innerException_4;
|
||||
char* ____helpURL_5;
|
||||
Il2CppIUnknown* ____stackTrace_6;
|
||||
char* ____stackTraceString_7;
|
||||
char* ____remoteStackTraceString_8;
|
||||
int32_t ____remoteStackIndex_9;
|
||||
Il2CppIUnknown* ____dynamicMethods_10;
|
||||
int32_t ____HResult_11;
|
||||
char* ____source_12;
|
||||
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
|
||||
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
|
||||
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
|
||||
int32_t ___caught_in_unmanaged_16;
|
||||
};
|
||||
// Native definition for COM marshalling of System.Exception
|
||||
struct Exception_t_marshaled_com
|
||||
{
|
||||
Il2CppChar* ____className_1;
|
||||
Il2CppChar* ____message_2;
|
||||
RuntimeObject* ____data_3;
|
||||
Exception_t_marshaled_com* ____innerException_4;
|
||||
Il2CppChar* ____helpURL_5;
|
||||
Il2CppIUnknown* ____stackTrace_6;
|
||||
Il2CppChar* ____stackTraceString_7;
|
||||
Il2CppChar* ____remoteStackTraceString_8;
|
||||
int32_t ____remoteStackIndex_9;
|
||||
Il2CppIUnknown* ____dynamicMethods_10;
|
||||
int32_t ____HResult_11;
|
||||
Il2CppChar* ____source_12;
|
||||
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
|
||||
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
|
||||
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
|
||||
int32_t ___caught_in_unmanaged_16;
|
||||
};
|
||||
|
||||
// System.SystemException
|
||||
struct SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 : public Exception_t
|
||||
{
|
||||
};
|
||||
|
||||
// System.ArgumentException
|
||||
struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
||||
{
|
||||
// System.String System.ArgumentException::_paramName
|
||||
String_t* ____paramName_18;
|
||||
};
|
||||
|
||||
// System.InvalidOperationException
|
||||
struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
||||
{
|
||||
};
|
||||
|
||||
// System.ArgumentNullException
|
||||
struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129 : public ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263
|
||||
{
|
||||
};
|
||||
|
||||
// <Module>
|
||||
|
||||
// <Module>
|
||||
|
||||
// System.Linq.Enumerable
|
||||
|
||||
// System.Linq.Enumerable
|
||||
|
||||
// System.Linq.Error
|
||||
|
||||
// System.Linq.Error
|
||||
|
||||
// System.String
|
||||
struct String_t_StaticFields
|
||||
{
|
||||
// System.String System.String::Empty
|
||||
String_t* ___Empty_6;
|
||||
};
|
||||
|
||||
// System.String
|
||||
|
||||
// System.Boolean
|
||||
struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_StaticFields
|
||||
{
|
||||
// System.String System.Boolean::TrueString
|
||||
String_t* ___TrueString_5;
|
||||
// System.String System.Boolean::FalseString
|
||||
String_t* ___FalseString_6;
|
||||
};
|
||||
|
||||
// System.Boolean
|
||||
|
||||
// System.Int32
|
||||
|
||||
// System.Int32
|
||||
|
||||
// System.Void
|
||||
|
||||
// System.Void
|
||||
|
||||
// System.Exception
|
||||
struct Exception_t_StaticFields
|
||||
{
|
||||
// System.Object System.Exception::s_EDILock
|
||||
RuntimeObject* ___s_EDILock_0;
|
||||
};
|
||||
|
||||
// System.Exception
|
||||
|
||||
// System.InvalidOperationException
|
||||
|
||||
// System.InvalidOperationException
|
||||
|
||||
// System.ArgumentNullException
|
||||
|
||||
// System.ArgumentNullException
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic pop
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
// System.Void System.ArgumentNullException::.ctor(System.String)
|
||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* __this, String_t* ___0_paramName, const RuntimeMethod* method) ;
|
||||
// System.Void System.InvalidOperationException::.ctor(System.String)
|
||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162 (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* __this, String_t* ___0_message, const RuntimeMethod* method) ;
|
||||
// System.Exception System.Linq.Error::ArgumentNull(System.String)
|
||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* Error_ArgumentNull_m1141D2C9AF8AB6ACC45E7488789598C5283D4EEE (String_t* ___0_s, const RuntimeMethod* method) ;
|
||||
// System.Exception System.Linq.Error::NoElements()
|
||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* Error_NoElements_m49C996124733B026EA2FDBE9382AAD136CA22362 (const RuntimeMethod* method) ;
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic push
|
||||
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
||||
#pragma clang diagnostic ignored "-Wunused-variable"
|
||||
#endif
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic pop
|
||||
#endif
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic push
|
||||
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
||||
#pragma clang diagnostic ignored "-Wunused-variable"
|
||||
#endif
|
||||
// System.Exception System.Linq.Error::ArgumentNull(System.String)
|
||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* Error_ArgumentNull_m1141D2C9AF8AB6ACC45E7488789598C5283D4EEE (String_t* ___0_s, const RuntimeMethod* method)
|
||||
{
|
||||
static bool s_Il2CppMethodInitialized;
|
||||
if (!s_Il2CppMethodInitialized)
|
||||
{
|
||||
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var);
|
||||
s_Il2CppMethodInitialized = true;
|
||||
}
|
||||
{
|
||||
String_t* L_0 = ___0_s;
|
||||
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var);
|
||||
NullCheck(L_1);
|
||||
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, L_0, NULL);
|
||||
return L_1;
|
||||
}
|
||||
}
|
||||
// System.Exception System.Linq.Error::MoreThanOneMatch()
|
||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* Error_MoreThanOneMatch_mE8ABBCC1C5FBA4D7BBE5B0647992D20F005F7A97 (const RuntimeMethod* method)
|
||||
{
|
||||
static bool s_Il2CppMethodInitialized;
|
||||
if (!s_Il2CppMethodInitialized)
|
||||
{
|
||||
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var);
|
||||
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9D0E978C2541B8A36DFB07E397656689CE9E713F);
|
||||
s_Il2CppMethodInitialized = true;
|
||||
}
|
||||
{
|
||||
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_0 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var);
|
||||
NullCheck(L_0);
|
||||
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_0, _stringLiteral9D0E978C2541B8A36DFB07E397656689CE9E713F, NULL);
|
||||
return L_0;
|
||||
}
|
||||
}
|
||||
// System.Exception System.Linq.Error::NoElements()
|
||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* Error_NoElements_m49C996124733B026EA2FDBE9382AAD136CA22362 (const RuntimeMethod* method)
|
||||
{
|
||||
static bool s_Il2CppMethodInitialized;
|
||||
if (!s_Il2CppMethodInitialized)
|
||||
{
|
||||
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var);
|
||||
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB7E78BE66617B9AE36B6A6E170E3545EE25C1D11);
|
||||
s_Il2CppMethodInitialized = true;
|
||||
}
|
||||
{
|
||||
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_0 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var);
|
||||
NullCheck(L_0);
|
||||
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_0, _stringLiteralB7E78BE66617B9AE36B6A6E170E3545EE25C1D11, NULL);
|
||||
return L_0;
|
||||
}
|
||||
}
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic pop
|
||||
#endif
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic push
|
||||
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
||||
#pragma clang diagnostic ignored "-Wunused-variable"
|
||||
#endif
|
||||
// System.Int32 System.Linq.Enumerable::Min(System.Collections.Generic.IEnumerable`1<System.Int32>)
|
||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Enumerable_Min_m3D3C3E5CE25D27D94448CA832FB5AB9F702D5443 (RuntimeObject* ___0_source, const RuntimeMethod* method)
|
||||
{
|
||||
static bool s_Il2CppMethodInitialized;
|
||||
if (!s_Il2CppMethodInitialized)
|
||||
{
|
||||
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
||||
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_1_tCE758D940790D6D0D56B457E522C195F8C413AF2_il2cpp_TypeInfo_var);
|
||||
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_tD6A90A7446DA8E6CF865EDFBBF18C1200BB6D452_il2cpp_TypeInfo_var);
|
||||
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
|
||||
s_Il2CppMethodInitialized = true;
|
||||
}
|
||||
int32_t V_0 = 0;
|
||||
bool V_1 = false;
|
||||
RuntimeObject* V_2 = NULL;
|
||||
int32_t V_3 = 0;
|
||||
{
|
||||
RuntimeObject* L_0 = ___0_source;
|
||||
if (L_0)
|
||||
{
|
||||
goto IL_000e;
|
||||
}
|
||||
}
|
||||
{
|
||||
Exception_t* L_1;
|
||||
L_1 = Error_ArgumentNull_m1141D2C9AF8AB6ACC45E7488789598C5283D4EEE(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral66F9618FDA792CAB23AF2D7FFB50AB2D3E393DC5)), NULL);
|
||||
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerable_Min_m3D3C3E5CE25D27D94448CA832FB5AB9F702D5443_RuntimeMethod_var)));
|
||||
}
|
||||
|
||||
IL_000e:
|
||||
{
|
||||
V_0 = 0;
|
||||
V_1 = (bool)0;
|
||||
RuntimeObject* L_2 = ___0_source;
|
||||
NullCheck(L_2);
|
||||
RuntimeObject* L_3;
|
||||
L_3 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Int32>::GetEnumerator() */, IEnumerable_1_tCE758D940790D6D0D56B457E522C195F8C413AF2_il2cpp_TypeInfo_var, L_2);
|
||||
V_2 = L_3;
|
||||
}
|
||||
{
|
||||
auto __finallyBlock = il2cpp::utils::Finally([&]
|
||||
{
|
||||
|
||||
FINALLY_003b:
|
||||
{// begin finally (depth: 1)
|
||||
{
|
||||
RuntimeObject* L_4 = V_2;
|
||||
if (!L_4)
|
||||
{
|
||||
goto IL_0044;
|
||||
}
|
||||
}
|
||||
{
|
||||
RuntimeObject* L_5 = V_2;
|
||||
NullCheck(L_5);
|
||||
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_5);
|
||||
}
|
||||
|
||||
IL_0044:
|
||||
{
|
||||
return;
|
||||
}
|
||||
}// end finally (depth: 1)
|
||||
});
|
||||
try
|
||||
{// begin try (depth: 1)
|
||||
{
|
||||
goto IL_0031_1;
|
||||
}
|
||||
|
||||
IL_001b_1:
|
||||
{
|
||||
RuntimeObject* L_6 = V_2;
|
||||
NullCheck(L_6);
|
||||
int32_t L_7;
|
||||
L_7 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Int32>::get_Current() */, IEnumerator_1_tD6A90A7446DA8E6CF865EDFBBF18C1200BB6D452_il2cpp_TypeInfo_var, L_6);
|
||||
V_3 = L_7;
|
||||
bool L_8 = V_1;
|
||||
if (!L_8)
|
||||
{
|
||||
goto IL_002d_1;
|
||||
}
|
||||
}
|
||||
{
|
||||
int32_t L_9 = V_3;
|
||||
int32_t L_10 = V_0;
|
||||
if ((((int32_t)L_9) >= ((int32_t)L_10)))
|
||||
{
|
||||
goto IL_0031_1;
|
||||
}
|
||||
}
|
||||
{
|
||||
int32_t L_11 = V_3;
|
||||
V_0 = L_11;
|
||||
goto IL_0031_1;
|
||||
}
|
||||
|
||||
IL_002d_1:
|
||||
{
|
||||
int32_t L_12 = V_3;
|
||||
V_0 = L_12;
|
||||
V_1 = (bool)1;
|
||||
}
|
||||
|
||||
IL_0031_1:
|
||||
{
|
||||
RuntimeObject* L_13 = V_2;
|
||||
NullCheck(L_13);
|
||||
bool L_14;
|
||||
L_14 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_13);
|
||||
if (L_14)
|
||||
{
|
||||
goto IL_001b_1;
|
||||
}
|
||||
}
|
||||
{
|
||||
goto IL_0045;
|
||||
}
|
||||
}// end try (depth: 1)
|
||||
catch(Il2CppExceptionWrapper& e)
|
||||
{
|
||||
__finallyBlock.StoreException(e.ex);
|
||||
}
|
||||
}
|
||||
|
||||
IL_0045:
|
||||
{
|
||||
bool L_15 = V_1;
|
||||
if (!L_15)
|
||||
{
|
||||
goto IL_004a;
|
||||
}
|
||||
}
|
||||
{
|
||||
int32_t L_16 = V_0;
|
||||
return L_16;
|
||||
}
|
||||
|
||||
IL_004a:
|
||||
{
|
||||
Exception_t* L_17;
|
||||
L_17 = Error_NoElements_m49C996124733B026EA2FDBE9382AAD136CA22362(NULL);
|
||||
IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerable_Min_m3D3C3E5CE25D27D94448CA832FB5AB9F702D5443_RuntimeMethod_var)));
|
||||
}
|
||||
}
|
||||
// System.Int32 System.Linq.Enumerable::Max(System.Collections.Generic.IEnumerable`1<System.Int32>)
|
||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Enumerable_Max_mF33848068459BE74BF534D16F6B678BB677EE704 (RuntimeObject* ___0_source, const RuntimeMethod* method)
|
||||
{
|
||||
static bool s_Il2CppMethodInitialized;
|
||||
if (!s_Il2CppMethodInitialized)
|
||||
{
|
||||
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
||||
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_1_tCE758D940790D6D0D56B457E522C195F8C413AF2_il2cpp_TypeInfo_var);
|
||||
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_tD6A90A7446DA8E6CF865EDFBBF18C1200BB6D452_il2cpp_TypeInfo_var);
|
||||
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
|
||||
s_Il2CppMethodInitialized = true;
|
||||
}
|
||||
int32_t V_0 = 0;
|
||||
bool V_1 = false;
|
||||
RuntimeObject* V_2 = NULL;
|
||||
int32_t V_3 = 0;
|
||||
{
|
||||
RuntimeObject* L_0 = ___0_source;
|
||||
if (L_0)
|
||||
{
|
||||
goto IL_000e;
|
||||
}
|
||||
}
|
||||
{
|
||||
Exception_t* L_1;
|
||||
L_1 = Error_ArgumentNull_m1141D2C9AF8AB6ACC45E7488789598C5283D4EEE(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral66F9618FDA792CAB23AF2D7FFB50AB2D3E393DC5)), NULL);
|
||||
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerable_Max_mF33848068459BE74BF534D16F6B678BB677EE704_RuntimeMethod_var)));
|
||||
}
|
||||
|
||||
IL_000e:
|
||||
{
|
||||
V_0 = 0;
|
||||
V_1 = (bool)0;
|
||||
RuntimeObject* L_2 = ___0_source;
|
||||
NullCheck(L_2);
|
||||
RuntimeObject* L_3;
|
||||
L_3 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Int32>::GetEnumerator() */, IEnumerable_1_tCE758D940790D6D0D56B457E522C195F8C413AF2_il2cpp_TypeInfo_var, L_2);
|
||||
V_2 = L_3;
|
||||
}
|
||||
{
|
||||
auto __finallyBlock = il2cpp::utils::Finally([&]
|
||||
{
|
||||
|
||||
FINALLY_003b:
|
||||
{// begin finally (depth: 1)
|
||||
{
|
||||
RuntimeObject* L_4 = V_2;
|
||||
if (!L_4)
|
||||
{
|
||||
goto IL_0044;
|
||||
}
|
||||
}
|
||||
{
|
||||
RuntimeObject* L_5 = V_2;
|
||||
NullCheck(L_5);
|
||||
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_5);
|
||||
}
|
||||
|
||||
IL_0044:
|
||||
{
|
||||
return;
|
||||
}
|
||||
}// end finally (depth: 1)
|
||||
});
|
||||
try
|
||||
{// begin try (depth: 1)
|
||||
{
|
||||
goto IL_0031_1;
|
||||
}
|
||||
|
||||
IL_001b_1:
|
||||
{
|
||||
RuntimeObject* L_6 = V_2;
|
||||
NullCheck(L_6);
|
||||
int32_t L_7;
|
||||
L_7 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Int32>::get_Current() */, IEnumerator_1_tD6A90A7446DA8E6CF865EDFBBF18C1200BB6D452_il2cpp_TypeInfo_var, L_6);
|
||||
V_3 = L_7;
|
||||
bool L_8 = V_1;
|
||||
if (!L_8)
|
||||
{
|
||||
goto IL_002d_1;
|
||||
}
|
||||
}
|
||||
{
|
||||
int32_t L_9 = V_3;
|
||||
int32_t L_10 = V_0;
|
||||
if ((((int32_t)L_9) <= ((int32_t)L_10)))
|
||||
{
|
||||
goto IL_0031_1;
|
||||
}
|
||||
}
|
||||
{
|
||||
int32_t L_11 = V_3;
|
||||
V_0 = L_11;
|
||||
goto IL_0031_1;
|
||||
}
|
||||
|
||||
IL_002d_1:
|
||||
{
|
||||
int32_t L_12 = V_3;
|
||||
V_0 = L_12;
|
||||
V_1 = (bool)1;
|
||||
}
|
||||
|
||||
IL_0031_1:
|
||||
{
|
||||
RuntimeObject* L_13 = V_2;
|
||||
NullCheck(L_13);
|
||||
bool L_14;
|
||||
L_14 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_13);
|
||||
if (L_14)
|
||||
{
|
||||
goto IL_001b_1;
|
||||
}
|
||||
}
|
||||
{
|
||||
goto IL_0045;
|
||||
}
|
||||
}// end try (depth: 1)
|
||||
catch(Il2CppExceptionWrapper& e)
|
||||
{
|
||||
__finallyBlock.StoreException(e.ex);
|
||||
}
|
||||
}
|
||||
|
||||
IL_0045:
|
||||
{
|
||||
bool L_15 = V_1;
|
||||
if (!L_15)
|
||||
{
|
||||
goto IL_004a;
|
||||
}
|
||||
}
|
||||
{
|
||||
int32_t L_16 = V_0;
|
||||
return L_16;
|
||||
}
|
||||
|
||||
IL_004a:
|
||||
{
|
||||
Exception_t* L_17;
|
||||
L_17 = Error_NoElements_m49C996124733B026EA2FDBE9382AAD136CA22362(NULL);
|
||||
IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerable_Max_mF33848068459BE74BF534D16F6B678BB677EE704_RuntimeMethod_var)));
|
||||
}
|
||||
}
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic pop
|
||||
#endif
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,147 @@
|
||||
#include "pch-cpp.hpp"
|
||||
|
||||
#ifndef _MSC_VER
|
||||
# include <alloca.h>
|
||||
#else
|
||||
# include <malloc.h>
|
||||
#endif
|
||||
|
||||
|
||||
#include <limits>
|
||||
|
||||
|
||||
|
||||
|
||||
IL2CPP_EXTERN_C RuntimeClass* XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_il2cpp_TypeInfo_var;
|
||||
|
||||
|
||||
IL2CPP_EXTERN_C_BEGIN
|
||||
IL2CPP_EXTERN_C_END
|
||||
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic push
|
||||
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
||||
#pragma clang diagnostic ignored "-Wunused-variable"
|
||||
#endif
|
||||
|
||||
// <Module>
|
||||
struct U3CModuleU3E_t4791F64F4B6411D4D033A002CAD365D597AA2451
|
||||
{
|
||||
};
|
||||
|
||||
// System.ValueType
|
||||
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F : public RuntimeObject
|
||||
{
|
||||
};
|
||||
// Native definition for P/Invoke marshalling of System.ValueType
|
||||
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_pinvoke
|
||||
{
|
||||
};
|
||||
// Native definition for COM marshalling of System.ValueType
|
||||
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_com
|
||||
{
|
||||
};
|
||||
|
||||
// System.Xml.XmlNode
|
||||
struct XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF : public RuntimeObject
|
||||
{
|
||||
};
|
||||
|
||||
// System.Xml.XmlReader
|
||||
struct XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD : public RuntimeObject
|
||||
{
|
||||
};
|
||||
|
||||
// System.UInt32
|
||||
struct UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B
|
||||
{
|
||||
// System.UInt32 System.UInt32::m_value
|
||||
uint32_t ___m_value_0;
|
||||
};
|
||||
|
||||
// System.Void
|
||||
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915
|
||||
{
|
||||
union
|
||||
{
|
||||
struct
|
||||
{
|
||||
};
|
||||
uint8_t Void_t4861ACF8F4594C3437BB48B6E56783494B843915__padding[1];
|
||||
};
|
||||
};
|
||||
|
||||
// <Module>
|
||||
|
||||
// <Module>
|
||||
|
||||
// System.Xml.XmlNode
|
||||
|
||||
// System.Xml.XmlNode
|
||||
|
||||
// System.Xml.XmlReader
|
||||
struct XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_StaticFields
|
||||
{
|
||||
// System.UInt32 System.Xml.XmlReader::IsTextualNodeBitmap
|
||||
uint32_t ___IsTextualNodeBitmap_0;
|
||||
// System.UInt32 System.Xml.XmlReader::CanReadContentAsBitmap
|
||||
uint32_t ___CanReadContentAsBitmap_1;
|
||||
// System.UInt32 System.Xml.XmlReader::HasValueBitmap
|
||||
uint32_t ___HasValueBitmap_2;
|
||||
};
|
||||
|
||||
// System.Xml.XmlReader
|
||||
|
||||
// System.UInt32
|
||||
|
||||
// System.UInt32
|
||||
|
||||
// System.Void
|
||||
|
||||
// System.Void
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic pop
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic push
|
||||
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
||||
#pragma clang diagnostic ignored "-Wunused-variable"
|
||||
#endif
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic pop
|
||||
#endif
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic push
|
||||
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
||||
#pragma clang diagnostic ignored "-Wunused-variable"
|
||||
#endif
|
||||
// System.Void System.Xml.XmlReader::.cctor()
|
||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReader__cctor_m9FF3BD38D3644E099B8305E251679A77A0DF493E (const RuntimeMethod* method)
|
||||
{
|
||||
static bool s_Il2CppMethodInitialized;
|
||||
if (!s_Il2CppMethodInitialized)
|
||||
{
|
||||
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_il2cpp_TypeInfo_var);
|
||||
s_Il2CppMethodInitialized = true;
|
||||
}
|
||||
{
|
||||
((XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_StaticFields*)il2cpp_codegen_static_fields_for(XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_il2cpp_TypeInfo_var))->___IsTextualNodeBitmap_0 = ((int32_t)24600);
|
||||
((XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_StaticFields*)il2cpp_codegen_static_fields_for(XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_il2cpp_TypeInfo_var))->___CanReadContentAsBitmap_1 = ((int32_t)123324);
|
||||
((XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_StaticFields*)il2cpp_codegen_static_fields_for(XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_il2cpp_TypeInfo_var))->___HasValueBitmap_2 = ((int32_t)157084);
|
||||
return;
|
||||
}
|
||||
}
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic pop
|
||||
#endif
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic push
|
||||
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
||||
#pragma clang diagnostic ignored "-Wunused-variable"
|
||||
#endif
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic pop
|
||||
#endif
|
||||
@@ -0,0 +1,45 @@
|
||||
#include "pch-c.h"
|
||||
#ifndef _MSC_VER
|
||||
# include <alloca.h>
|
||||
#else
|
||||
# include <malloc.h>
|
||||
#endif
|
||||
|
||||
|
||||
#include "codegen/il2cpp-codegen-metadata.h"
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// 0x00000001 System.Void System.Xml.XmlReader::.cctor()
|
||||
extern void XmlReader__cctor_m9FF3BD38D3644E099B8305E251679A77A0DF493E (void);
|
||||
static Il2CppMethodPointer s_methodPointers[1] =
|
||||
{
|
||||
XmlReader__cctor_m9FF3BD38D3644E099B8305E251679A77A0DF493E,
|
||||
};
|
||||
static const int32_t s_InvokerIndices[1] =
|
||||
{
|
||||
5220,
|
||||
};
|
||||
IL2CPP_EXTERN_C const Il2CppCodeGenModule g_System_Xml_CodeGenModule;
|
||||
const Il2CppCodeGenModule g_System_Xml_CodeGenModule =
|
||||
{
|
||||
"System.Xml.dll",
|
||||
1,
|
||||
s_methodPointers,
|
||||
0,
|
||||
NULL,
|
||||
s_InvokerIndices,
|
||||
0,
|
||||
NULL,
|
||||
0,
|
||||
NULL,
|
||||
0,
|
||||
NULL,
|
||||
NULL,
|
||||
NULL, // module initializer,
|
||||
NULL,
|
||||
NULL,
|
||||
NULL,
|
||||
};
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,453 @@
|
||||
extern "C" void RegisterStaticallyLinkedModulesGranular()
|
||||
{
|
||||
void RegisterModule_SharedInternals();
|
||||
RegisterModule_SharedInternals();
|
||||
|
||||
void RegisterModule_Core();
|
||||
RegisterModule_Core();
|
||||
|
||||
void RegisterModule_Animation();
|
||||
RegisterModule_Animation();
|
||||
|
||||
void RegisterModule_Audio();
|
||||
RegisterModule_Audio();
|
||||
|
||||
void RegisterModule_CrashReporting();
|
||||
RegisterModule_CrashReporting();
|
||||
|
||||
void RegisterModule_ImageConversion();
|
||||
RegisterModule_ImageConversion();
|
||||
|
||||
void RegisterModule_GameCenter();
|
||||
RegisterModule_GameCenter();
|
||||
|
||||
void RegisterModule_InputLegacy();
|
||||
RegisterModule_InputLegacy();
|
||||
|
||||
void RegisterModule_IMGUI();
|
||||
RegisterModule_IMGUI();
|
||||
|
||||
void RegisterModule_JSONSerialize();
|
||||
RegisterModule_JSONSerialize();
|
||||
|
||||
void RegisterModule_PerformanceReporting();
|
||||
RegisterModule_PerformanceReporting();
|
||||
|
||||
void RegisterModule_Physics();
|
||||
RegisterModule_Physics();
|
||||
|
||||
void RegisterModule_RuntimeInitializeOnLoadManagerInitializer();
|
||||
RegisterModule_RuntimeInitializeOnLoadManagerInitializer();
|
||||
|
||||
void RegisterModule_TextRendering();
|
||||
RegisterModule_TextRendering();
|
||||
|
||||
void RegisterModule_TextCoreFontEngine();
|
||||
RegisterModule_TextCoreFontEngine();
|
||||
|
||||
void RegisterModule_TextCoreTextEngine();
|
||||
RegisterModule_TextCoreTextEngine();
|
||||
|
||||
void RegisterModule_TLS();
|
||||
RegisterModule_TLS();
|
||||
|
||||
void RegisterModule_UI();
|
||||
RegisterModule_UI();
|
||||
|
||||
void RegisterModule_UIElementsNative();
|
||||
RegisterModule_UIElementsNative();
|
||||
|
||||
void RegisterModule_UIElements();
|
||||
RegisterModule_UIElements();
|
||||
|
||||
void RegisterModule_UnityAnalyticsCommon();
|
||||
RegisterModule_UnityAnalyticsCommon();
|
||||
|
||||
void RegisterModule_UnityConnect();
|
||||
RegisterModule_UnityConnect();
|
||||
|
||||
void RegisterModule_UnityWebRequest();
|
||||
RegisterModule_UnityWebRequest();
|
||||
|
||||
void RegisterModule_UnityAnalytics();
|
||||
RegisterModule_UnityAnalytics();
|
||||
|
||||
void RegisterModule_UnityWebRequestAudio();
|
||||
RegisterModule_UnityWebRequestAudio();
|
||||
|
||||
}
|
||||
|
||||
template <typename T> void RegisterUnityClass(const char*);
|
||||
template <typename T> void RegisterStrippedType(int, const char*, const char*);
|
||||
|
||||
void InvokeRegisterStaticallyLinkedModuleClasses()
|
||||
{
|
||||
// Do nothing (we're in stripping mode)
|
||||
}
|
||||
|
||||
class EditorExtension; template <> void RegisterUnityClass<EditorExtension>(const char*);
|
||||
namespace Unity { class Component; } template <> void RegisterUnityClass<Unity::Component>(const char*);
|
||||
class Behaviour; template <> void RegisterUnityClass<Behaviour>(const char*);
|
||||
class Animation;
|
||||
class Animator; template <> void RegisterUnityClass<Animator>(const char*);
|
||||
namespace Unity { class ArticulationBody; }
|
||||
class AudioBehaviour; template <> void RegisterUnityClass<AudioBehaviour>(const char*);
|
||||
class AudioListener; template <> void RegisterUnityClass<AudioListener>(const char*);
|
||||
class AudioSource; template <> void RegisterUnityClass<AudioSource>(const char*);
|
||||
class AudioFilter;
|
||||
class AudioChorusFilter;
|
||||
class AudioDistortionFilter;
|
||||
class AudioEchoFilter;
|
||||
class AudioHighPassFilter;
|
||||
class AudioLowPassFilter;
|
||||
class AudioReverbFilter;
|
||||
class AudioReverbZone;
|
||||
class Camera; template <> void RegisterUnityClass<Camera>(const char*);
|
||||
namespace UI { class Canvas; } template <> void RegisterUnityClass<UI::Canvas>(const char*);
|
||||
namespace UI { class CanvasGroup; } template <> void RegisterUnityClass<UI::CanvasGroup>(const char*);
|
||||
namespace Unity { class Cloth; }
|
||||
class Collider2D;
|
||||
class BoxCollider2D;
|
||||
class CapsuleCollider2D;
|
||||
class CircleCollider2D;
|
||||
class CompositeCollider2D;
|
||||
class CustomCollider2D;
|
||||
class EdgeCollider2D;
|
||||
class PolygonCollider2D;
|
||||
class TilemapCollider2D;
|
||||
class ConstantForce;
|
||||
class Effector2D;
|
||||
class AreaEffector2D;
|
||||
class BuoyancyEffector2D;
|
||||
class PlatformEffector2D;
|
||||
class PointEffector2D;
|
||||
class SurfaceEffector2D;
|
||||
class FlareLayer;
|
||||
class GridLayout;
|
||||
class Grid;
|
||||
class Tilemap;
|
||||
class Halo;
|
||||
class IConstraint;
|
||||
class AimConstraint;
|
||||
class LookAtConstraint;
|
||||
class ParentConstraint;
|
||||
class PositionConstraint;
|
||||
class RotationConstraint;
|
||||
class ScaleConstraint;
|
||||
class Joint2D;
|
||||
class AnchoredJoint2D;
|
||||
class DistanceJoint2D;
|
||||
class FixedJoint2D;
|
||||
class FrictionJoint2D;
|
||||
class HingeJoint2D;
|
||||
class SliderJoint2D;
|
||||
class SpringJoint2D;
|
||||
class WheelJoint2D;
|
||||
class RelativeJoint2D;
|
||||
class TargetJoint2D;
|
||||
class LensFlare;
|
||||
class Light; template <> void RegisterUnityClass<Light>(const char*);
|
||||
class LightProbeGroup;
|
||||
class LightProbeProxyVolume;
|
||||
class MonoBehaviour; template <> void RegisterUnityClass<MonoBehaviour>(const char*);
|
||||
class NavMeshAgent;
|
||||
class NavMeshObstacle;
|
||||
class OffMeshLink;
|
||||
class ParticleSystemForceField;
|
||||
class PhysicsUpdateBehaviour2D;
|
||||
class ConstantForce2D;
|
||||
class PlayableDirector;
|
||||
class Projector;
|
||||
class ReflectionProbe; template <> void RegisterUnityClass<ReflectionProbe>(const char*);
|
||||
class Skybox;
|
||||
class SortingGroup; template <> void RegisterUnityClass<SortingGroup>(const char*);
|
||||
class StreamingController;
|
||||
class Terrain;
|
||||
class VideoPlayer;
|
||||
class VisualEffect;
|
||||
class WindZone;
|
||||
namespace UI { class CanvasRenderer; } template <> void RegisterUnityClass<UI::CanvasRenderer>(const char*);
|
||||
class Collider;
|
||||
class BoxCollider;
|
||||
class CapsuleCollider;
|
||||
class CharacterController;
|
||||
class MeshCollider;
|
||||
class SphereCollider;
|
||||
class TerrainCollider;
|
||||
class WheelCollider;
|
||||
namespace Unity { class Joint; }
|
||||
namespace Unity { class CharacterJoint; }
|
||||
namespace Unity { class ConfigurableJoint; }
|
||||
namespace Unity { class FixedJoint; }
|
||||
namespace Unity { class HingeJoint; }
|
||||
namespace Unity { class SpringJoint; }
|
||||
class LODGroup;
|
||||
class MeshFilter; template <> void RegisterUnityClass<MeshFilter>(const char*);
|
||||
class OcclusionArea;
|
||||
class OcclusionPortal;
|
||||
class ParticleSystem;
|
||||
class Renderer; template <> void RegisterUnityClass<Renderer>(const char*);
|
||||
class BillboardRenderer;
|
||||
class LineRenderer;
|
||||
class MeshRenderer; template <> void RegisterUnityClass<MeshRenderer>(const char*);
|
||||
class ParticleSystemRenderer;
|
||||
class SkinnedMeshRenderer;
|
||||
class SpriteMask;
|
||||
class SpriteRenderer; template <> void RegisterUnityClass<SpriteRenderer>(const char*);
|
||||
class SpriteShapeRenderer;
|
||||
class TilemapRenderer;
|
||||
class TrailRenderer;
|
||||
class VFXRenderer;
|
||||
class Rigidbody; template <> void RegisterUnityClass<Rigidbody>(const char*);
|
||||
class Rigidbody2D;
|
||||
namespace TextRenderingPrivate { class TextMesh; }
|
||||
class Transform; template <> void RegisterUnityClass<Transform>(const char*);
|
||||
namespace UI { class RectTransform; } template <> void RegisterUnityClass<UI::RectTransform>(const char*);
|
||||
class Tree;
|
||||
class GameObject; template <> void RegisterUnityClass<GameObject>(const char*);
|
||||
class NamedObject; template <> void RegisterUnityClass<NamedObject>(const char*);
|
||||
class AssetBundle;
|
||||
class AssetBundleManifest;
|
||||
class AudioMixer; template <> void RegisterUnityClass<AudioMixer>(const char*);
|
||||
class AudioMixerController;
|
||||
class AudioMixerGroup; template <> void RegisterUnityClass<AudioMixerGroup>(const char*);
|
||||
class AudioMixerGroupController;
|
||||
class AudioMixerSnapshot; template <> void RegisterUnityClass<AudioMixerSnapshot>(const char*);
|
||||
class AudioMixerSnapshotController;
|
||||
class Avatar;
|
||||
class AvatarMask;
|
||||
class BillboardAsset;
|
||||
class ComputeShader; template <> void RegisterUnityClass<ComputeShader>(const char*);
|
||||
class Flare;
|
||||
namespace TextRendering { class Font; } template <> void RegisterUnityClass<TextRendering::Font>(const char*);
|
||||
class LightProbes; template <> void RegisterUnityClass<LightProbes>(const char*);
|
||||
class LightingSettings; template <> void RegisterUnityClass<LightingSettings>(const char*);
|
||||
class LocalizationAsset;
|
||||
class Material; template <> void RegisterUnityClass<Material>(const char*);
|
||||
class ProceduralMaterial;
|
||||
class Mesh; template <> void RegisterUnityClass<Mesh>(const char*);
|
||||
class Motion; template <> void RegisterUnityClass<Motion>(const char*);
|
||||
class AnimationClip; template <> void RegisterUnityClass<AnimationClip>(const char*);
|
||||
class NavMeshData;
|
||||
class OcclusionCullingData;
|
||||
class PhysicMaterial;
|
||||
class PhysicsMaterial2D;
|
||||
class PreloadData; template <> void RegisterUnityClass<PreloadData>(const char*);
|
||||
class RayTracingShader;
|
||||
class RuntimeAnimatorController; template <> void RegisterUnityClass<RuntimeAnimatorController>(const char*);
|
||||
class AnimatorController; template <> void RegisterUnityClass<AnimatorController>(const char*);
|
||||
class AnimatorOverrideController; template <> void RegisterUnityClass<AnimatorOverrideController>(const char*);
|
||||
class SampleClip; template <> void RegisterUnityClass<SampleClip>(const char*);
|
||||
class AudioClip; template <> void RegisterUnityClass<AudioClip>(const char*);
|
||||
class Shader; template <> void RegisterUnityClass<Shader>(const char*);
|
||||
class ShaderVariantCollection;
|
||||
class SpeedTreeWindAsset;
|
||||
class Sprite; template <> void RegisterUnityClass<Sprite>(const char*);
|
||||
class SpriteAtlas; template <> void RegisterUnityClass<SpriteAtlas>(const char*);
|
||||
class SubstanceArchive;
|
||||
class TerrainData;
|
||||
class TerrainLayer;
|
||||
class TextAsset; template <> void RegisterUnityClass<TextAsset>(const char*);
|
||||
class MonoScript; template <> void RegisterUnityClass<MonoScript>(const char*);
|
||||
class Texture; template <> void RegisterUnityClass<Texture>(const char*);
|
||||
class BaseVideoTexture;
|
||||
class WebCamTexture;
|
||||
class CubemapArray; template <> void RegisterUnityClass<CubemapArray>(const char*);
|
||||
class LowerResBlitTexture; template <> void RegisterUnityClass<LowerResBlitTexture>(const char*);
|
||||
class MovieTexture;
|
||||
class ProceduralTexture;
|
||||
class RenderTexture; template <> void RegisterUnityClass<RenderTexture>(const char*);
|
||||
class CustomRenderTexture;
|
||||
class SparseTexture;
|
||||
class Texture2D; template <> void RegisterUnityClass<Texture2D>(const char*);
|
||||
class Cubemap; template <> void RegisterUnityClass<Cubemap>(const char*);
|
||||
class Texture2DArray; template <> void RegisterUnityClass<Texture2DArray>(const char*);
|
||||
class Texture3D; template <> void RegisterUnityClass<Texture3D>(const char*);
|
||||
class VideoClip;
|
||||
class VisualEffectObject;
|
||||
class VisualEffectAsset;
|
||||
class VisualEffectSubgraph;
|
||||
class GameManager; template <> void RegisterUnityClass<GameManager>(const char*);
|
||||
class GlobalGameManager; template <> void RegisterUnityClass<GlobalGameManager>(const char*);
|
||||
class AudioManager; template <> void RegisterUnityClass<AudioManager>(const char*);
|
||||
class BuildSettings; template <> void RegisterUnityClass<BuildSettings>(const char*);
|
||||
class DelayedCallManager; template <> void RegisterUnityClass<DelayedCallManager>(const char*);
|
||||
class GraphicsSettings; template <> void RegisterUnityClass<GraphicsSettings>(const char*);
|
||||
class InputManager; template <> void RegisterUnityClass<InputManager>(const char*);
|
||||
class MonoManager; template <> void RegisterUnityClass<MonoManager>(const char*);
|
||||
class NavMeshProjectSettings;
|
||||
class Physics2DSettings;
|
||||
class PhysicsManager; template <> void RegisterUnityClass<PhysicsManager>(const char*);
|
||||
class PlayerSettings; template <> void RegisterUnityClass<PlayerSettings>(const char*);
|
||||
class QualitySettings; template <> void RegisterUnityClass<QualitySettings>(const char*);
|
||||
class ResourceManager; template <> void RegisterUnityClass<ResourceManager>(const char*);
|
||||
class RuntimeInitializeOnLoadManager; template <> void RegisterUnityClass<RuntimeInitializeOnLoadManager>(const char*);
|
||||
class ShaderNameRegistry; template <> void RegisterUnityClass<ShaderNameRegistry>(const char*);
|
||||
class StreamingManager;
|
||||
class TagManager; template <> void RegisterUnityClass<TagManager>(const char*);
|
||||
class TimeManager; template <> void RegisterUnityClass<TimeManager>(const char*);
|
||||
class UnityConnectSettings; template <> void RegisterUnityClass<UnityConnectSettings>(const char*);
|
||||
class VFXManager;
|
||||
class LevelGameManager; template <> void RegisterUnityClass<LevelGameManager>(const char*);
|
||||
class LightmapSettings; template <> void RegisterUnityClass<LightmapSettings>(const char*);
|
||||
class NavMeshSettings;
|
||||
class OcclusionCullingSettings;
|
||||
class RenderSettings; template <> void RegisterUnityClass<RenderSettings>(const char*);
|
||||
|
||||
void RegisterAllClasses()
|
||||
{
|
||||
void RegisterBuiltinTypes();
|
||||
RegisterBuiltinTypes();
|
||||
//Total: 75 non stripped classes
|
||||
//0. AnimationClip
|
||||
RegisterUnityClass<AnimationClip>("Animation");
|
||||
//1. Animator
|
||||
RegisterUnityClass<Animator>("Animation");
|
||||
//2. AnimatorController
|
||||
RegisterUnityClass<AnimatorController>("Animation");
|
||||
//3. AnimatorOverrideController
|
||||
RegisterUnityClass<AnimatorOverrideController>("Animation");
|
||||
//4. Motion
|
||||
RegisterUnityClass<Motion>("Animation");
|
||||
//5. RuntimeAnimatorController
|
||||
RegisterUnityClass<RuntimeAnimatorController>("Animation");
|
||||
//6. AudioBehaviour
|
||||
RegisterUnityClass<AudioBehaviour>("Audio");
|
||||
//7. AudioClip
|
||||
RegisterUnityClass<AudioClip>("Audio");
|
||||
//8. AudioListener
|
||||
RegisterUnityClass<AudioListener>("Audio");
|
||||
//9. AudioManager
|
||||
RegisterUnityClass<AudioManager>("Audio");
|
||||
//10. AudioMixer
|
||||
RegisterUnityClass<AudioMixer>("Audio");
|
||||
//11. AudioMixerGroup
|
||||
RegisterUnityClass<AudioMixerGroup>("Audio");
|
||||
//12. AudioMixerSnapshot
|
||||
RegisterUnityClass<AudioMixerSnapshot>("Audio");
|
||||
//13. AudioSource
|
||||
RegisterUnityClass<AudioSource>("Audio");
|
||||
//14. SampleClip
|
||||
RegisterUnityClass<SampleClip>("Audio");
|
||||
//15. Behaviour
|
||||
RegisterUnityClass<Behaviour>("Core");
|
||||
//16. BuildSettings
|
||||
RegisterUnityClass<BuildSettings>("Core");
|
||||
//17. Camera
|
||||
RegisterUnityClass<Camera>("Core");
|
||||
//18. Unity::Component
|
||||
RegisterUnityClass<Unity::Component>("Core");
|
||||
//19. ComputeShader
|
||||
RegisterUnityClass<ComputeShader>("Core");
|
||||
//20. Cubemap
|
||||
RegisterUnityClass<Cubemap>("Core");
|
||||
//21. CubemapArray
|
||||
RegisterUnityClass<CubemapArray>("Core");
|
||||
//22. DelayedCallManager
|
||||
RegisterUnityClass<DelayedCallManager>("Core");
|
||||
//23. EditorExtension
|
||||
RegisterUnityClass<EditorExtension>("Core");
|
||||
//24. GameManager
|
||||
RegisterUnityClass<GameManager>("Core");
|
||||
//25. GameObject
|
||||
RegisterUnityClass<GameObject>("Core");
|
||||
//26. GlobalGameManager
|
||||
RegisterUnityClass<GlobalGameManager>("Core");
|
||||
//27. GraphicsSettings
|
||||
RegisterUnityClass<GraphicsSettings>("Core");
|
||||
//28. InputManager
|
||||
RegisterUnityClass<InputManager>("Core");
|
||||
//29. LevelGameManager
|
||||
RegisterUnityClass<LevelGameManager>("Core");
|
||||
//30. Light
|
||||
RegisterUnityClass<Light>("Core");
|
||||
//31. LightingSettings
|
||||
RegisterUnityClass<LightingSettings>("Core");
|
||||
//32. LightmapSettings
|
||||
RegisterUnityClass<LightmapSettings>("Core");
|
||||
//33. LightProbes
|
||||
RegisterUnityClass<LightProbes>("Core");
|
||||
//34. LowerResBlitTexture
|
||||
RegisterUnityClass<LowerResBlitTexture>("Core");
|
||||
//35. Material
|
||||
RegisterUnityClass<Material>("Core");
|
||||
//36. Mesh
|
||||
RegisterUnityClass<Mesh>("Core");
|
||||
//37. MeshFilter
|
||||
RegisterUnityClass<MeshFilter>("Core");
|
||||
//38. MeshRenderer
|
||||
RegisterUnityClass<MeshRenderer>("Core");
|
||||
//39. MonoBehaviour
|
||||
RegisterUnityClass<MonoBehaviour>("Core");
|
||||
//40. MonoManager
|
||||
RegisterUnityClass<MonoManager>("Core");
|
||||
//41. MonoScript
|
||||
RegisterUnityClass<MonoScript>("Core");
|
||||
//42. NamedObject
|
||||
RegisterUnityClass<NamedObject>("Core");
|
||||
//43. Object
|
||||
//Skipping Object
|
||||
//44. PlayerSettings
|
||||
RegisterUnityClass<PlayerSettings>("Core");
|
||||
//45. PreloadData
|
||||
RegisterUnityClass<PreloadData>("Core");
|
||||
//46. QualitySettings
|
||||
RegisterUnityClass<QualitySettings>("Core");
|
||||
//47. UI::RectTransform
|
||||
RegisterUnityClass<UI::RectTransform>("Core");
|
||||
//48. ReflectionProbe
|
||||
RegisterUnityClass<ReflectionProbe>("Core");
|
||||
//49. Renderer
|
||||
RegisterUnityClass<Renderer>("Core");
|
||||
//50. RenderSettings
|
||||
RegisterUnityClass<RenderSettings>("Core");
|
||||
//51. RenderTexture
|
||||
RegisterUnityClass<RenderTexture>("Core");
|
||||
//52. ResourceManager
|
||||
RegisterUnityClass<ResourceManager>("Core");
|
||||
//53. RuntimeInitializeOnLoadManager
|
||||
RegisterUnityClass<RuntimeInitializeOnLoadManager>("Core");
|
||||
//54. Shader
|
||||
RegisterUnityClass<Shader>("Core");
|
||||
//55. ShaderNameRegistry
|
||||
RegisterUnityClass<ShaderNameRegistry>("Core");
|
||||
//56. SortingGroup
|
||||
RegisterUnityClass<SortingGroup>("Core");
|
||||
//57. Sprite
|
||||
RegisterUnityClass<Sprite>("Core");
|
||||
//58. SpriteAtlas
|
||||
RegisterUnityClass<SpriteAtlas>("Core");
|
||||
//59. SpriteRenderer
|
||||
RegisterUnityClass<SpriteRenderer>("Core");
|
||||
//60. TagManager
|
||||
RegisterUnityClass<TagManager>("Core");
|
||||
//61. TextAsset
|
||||
RegisterUnityClass<TextAsset>("Core");
|
||||
//62. Texture
|
||||
RegisterUnityClass<Texture>("Core");
|
||||
//63. Texture2D
|
||||
RegisterUnityClass<Texture2D>("Core");
|
||||
//64. Texture2DArray
|
||||
RegisterUnityClass<Texture2DArray>("Core");
|
||||
//65. Texture3D
|
||||
RegisterUnityClass<Texture3D>("Core");
|
||||
//66. TimeManager
|
||||
RegisterUnityClass<TimeManager>("Core");
|
||||
//67. Transform
|
||||
RegisterUnityClass<Transform>("Core");
|
||||
//68. PhysicsManager
|
||||
RegisterUnityClass<PhysicsManager>("Physics");
|
||||
//69. Rigidbody
|
||||
RegisterUnityClass<Rigidbody>("Physics");
|
||||
//70. TextRendering::Font
|
||||
RegisterUnityClass<TextRendering::Font>("TextRendering");
|
||||
//71. UI::Canvas
|
||||
RegisterUnityClass<UI::Canvas>("UI");
|
||||
//72. UI::CanvasGroup
|
||||
RegisterUnityClass<UI::CanvasGroup>("UI");
|
||||
//73. UI::CanvasRenderer
|
||||
RegisterUnityClass<UI::CanvasRenderer>("UI");
|
||||
//74. UnityConnectSettings
|
||||
RegisterUnityClass<UnityConnectSettings>("UnityConnect");
|
||||
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,338 @@
|
||||
#include "pch-c.h"
|
||||
#ifndef _MSC_VER
|
||||
# include <alloca.h>
|
||||
#else
|
||||
# include <malloc.h>
|
||||
#endif
|
||||
|
||||
|
||||
#include "codegen/il2cpp-codegen-metadata.h"
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// 0x00000001 System.Void UnityEngine.StateMachineBehaviour::OnStateEnter(UnityEngine.Animator,UnityEngine.AnimatorStateInfo,System.Int32)
|
||||
extern void StateMachineBehaviour_OnStateEnter_mB618EFE75A50CBAA3EE6471E64A3E2CA2A2C90FD (void);
|
||||
// 0x00000002 System.Void UnityEngine.StateMachineBehaviour::OnStateUpdate(UnityEngine.Animator,UnityEngine.AnimatorStateInfo,System.Int32)
|
||||
extern void StateMachineBehaviour_OnStateUpdate_mC1A83A4F693AF3AB51BC592A0CE525CE4F320D6B (void);
|
||||
// 0x00000003 System.Void UnityEngine.StateMachineBehaviour::OnStateExit(UnityEngine.Animator,UnityEngine.AnimatorStateInfo,System.Int32)
|
||||
extern void StateMachineBehaviour_OnStateExit_mC113F0B2F53847F9A6755B82D0AC53C971171CFD (void);
|
||||
// 0x00000004 System.Void UnityEngine.StateMachineBehaviour::OnStateMove(UnityEngine.Animator,UnityEngine.AnimatorStateInfo,System.Int32)
|
||||
extern void StateMachineBehaviour_OnStateMove_m7229D5EFBA432665B9046FC3C21D463FFD281978 (void);
|
||||
// 0x00000005 System.Void UnityEngine.StateMachineBehaviour::OnStateIK(UnityEngine.Animator,UnityEngine.AnimatorStateInfo,System.Int32)
|
||||
extern void StateMachineBehaviour_OnStateIK_m310C17694D8D1B9D60D549259A39837F22FD3240 (void);
|
||||
// 0x00000006 System.Void UnityEngine.StateMachineBehaviour::OnStateMachineEnter(UnityEngine.Animator,System.Int32)
|
||||
extern void StateMachineBehaviour_OnStateMachineEnter_m0CEFF9E4946BFDC4F7066BEB4C961169DBC5073F (void);
|
||||
// 0x00000007 System.Void UnityEngine.StateMachineBehaviour::OnStateMachineExit(UnityEngine.Animator,System.Int32)
|
||||
extern void StateMachineBehaviour_OnStateMachineExit_m384B808E3961C6C2C375DF7487EF2B49E44E6CD7 (void);
|
||||
// 0x00000008 System.Void UnityEngine.StateMachineBehaviour::OnStateEnter(UnityEngine.Animator,UnityEngine.AnimatorStateInfo,System.Int32,UnityEngine.Animations.AnimatorControllerPlayable)
|
||||
extern void StateMachineBehaviour_OnStateEnter_m491D81A9A64DE4AE02415A5909B74AE947EAE1B9 (void);
|
||||
// 0x00000009 System.Void UnityEngine.StateMachineBehaviour::OnStateUpdate(UnityEngine.Animator,UnityEngine.AnimatorStateInfo,System.Int32,UnityEngine.Animations.AnimatorControllerPlayable)
|
||||
extern void StateMachineBehaviour_OnStateUpdate_mF3130BE7BDD7C8B2470303FB1986A336E47CC98C (void);
|
||||
// 0x0000000A System.Void UnityEngine.StateMachineBehaviour::OnStateExit(UnityEngine.Animator,UnityEngine.AnimatorStateInfo,System.Int32,UnityEngine.Animations.AnimatorControllerPlayable)
|
||||
extern void StateMachineBehaviour_OnStateExit_mD47A506ACE251A6341115CBE5607D05C01747127 (void);
|
||||
// 0x0000000B System.Void UnityEngine.StateMachineBehaviour::OnStateMove(UnityEngine.Animator,UnityEngine.AnimatorStateInfo,System.Int32,UnityEngine.Animations.AnimatorControllerPlayable)
|
||||
extern void StateMachineBehaviour_OnStateMove_m1A01C10E754426572C7BBA7AA13044FDA372FDFC (void);
|
||||
// 0x0000000C System.Void UnityEngine.StateMachineBehaviour::OnStateIK(UnityEngine.Animator,UnityEngine.AnimatorStateInfo,System.Int32,UnityEngine.Animations.AnimatorControllerPlayable)
|
||||
extern void StateMachineBehaviour_OnStateIK_mCE3B4C71868B564EE6BE4B8663535058705C3B72 (void);
|
||||
// 0x0000000D System.Void UnityEngine.StateMachineBehaviour::OnStateMachineEnter(UnityEngine.Animator,System.Int32,UnityEngine.Animations.AnimatorControllerPlayable)
|
||||
extern void StateMachineBehaviour_OnStateMachineEnter_m0399B12419A4F990F41BD589C833E2D2C0076762 (void);
|
||||
// 0x0000000E System.Void UnityEngine.StateMachineBehaviour::OnStateMachineExit(UnityEngine.Animator,System.Int32,UnityEngine.Animations.AnimatorControllerPlayable)
|
||||
extern void StateMachineBehaviour_OnStateMachineExit_mF8BB1A8851B0699FC1D85F538E16EF12C08BBB93 (void);
|
||||
// 0x0000000F System.Void UnityEngine.StateMachineBehaviour::.ctor()
|
||||
extern void StateMachineBehaviour__ctor_m9663A75D1016E16D7E3A48E2D4E6466A041A00AB (void);
|
||||
// 0x00000010 System.Void UnityEngine.AnimationEvent::.ctor()
|
||||
extern void AnimationEvent__ctor_mBC954085B1D18B436D08E7ADE3458B91E208F3B2 (void);
|
||||
// 0x00000011 System.Void UnityEngine.Animator::SetTrigger(System.String)
|
||||
extern void Animator_SetTrigger_mC9CD54D627C8843EF6E159E167449D216EF6EB30 (void);
|
||||
// 0x00000012 System.Void UnityEngine.Animator::ResetTrigger(System.String)
|
||||
extern void Animator_ResetTrigger_m8DCA67D5A6B56702E3FAD4E18243E194B71297CC (void);
|
||||
// 0x00000013 System.Boolean UnityEngine.Animator::get_hasBoundPlayables()
|
||||
extern void Animator_get_hasBoundPlayables_mA5A6132C03593851FE80D8E7490191E051E5A1C9 (void);
|
||||
// 0x00000014 System.Void UnityEngine.Animator::SetTriggerString(System.String)
|
||||
extern void Animator_SetTriggerString_m177C75DFBE070DE66FC08A3232444CCEA409C25E (void);
|
||||
// 0x00000015 System.Void UnityEngine.Animator::ResetTriggerString(System.String)
|
||||
extern void Animator_ResetTriggerString_m78259348CED35F156148A64B95EBD73CE3951868 (void);
|
||||
// 0x00000016 System.Void UnityEngine.AnimatorOverrideController::OnInvalidateOverrideController(UnityEngine.AnimatorOverrideController)
|
||||
extern void AnimatorOverrideController_OnInvalidateOverrideController_mA6B0AA977505FDEFDD6BCA2E941FD3A18AE1AD23 (void);
|
||||
// 0x00000017 System.Void UnityEngine.AnimatorOverrideController/OnOverrideControllerDirtyCallback::.ctor(System.Object,System.IntPtr)
|
||||
extern void OnOverrideControllerDirtyCallback__ctor_mA49B11AF24CB49A9B764058DB73CE221AE54E106 (void);
|
||||
// 0x00000018 System.Void UnityEngine.AnimatorOverrideController/OnOverrideControllerDirtyCallback::Invoke()
|
||||
extern void OnOverrideControllerDirtyCallback_Invoke_m538DCB0FFFE75495DC3977DBBF55A07C570F8B5A (void);
|
||||
// 0x00000019 UnityEngine.Playables.PlayableHandle UnityEngine.Animations.AnimationClipPlayable::GetHandle()
|
||||
extern void AnimationClipPlayable_GetHandle_mE775F2247901BA293DB01A8D384D3F9D02A25627 (void);
|
||||
// 0x0000001A System.Boolean UnityEngine.Animations.AnimationClipPlayable::Equals(UnityEngine.Animations.AnimationClipPlayable)
|
||||
extern void AnimationClipPlayable_Equals_mC5263BEA86C02CEDF93C5B14EAA168883E1DB5F4 (void);
|
||||
// 0x0000001B System.Void UnityEngine.Animations.AnimationLayerMixerPlayable::.ctor(UnityEngine.Playables.PlayableHandle,System.Boolean)
|
||||
extern void AnimationLayerMixerPlayable__ctor_m28884B8B9F7E057DF947E3B43ED78EA107368BD6 (void);
|
||||
// 0x0000001C UnityEngine.Playables.PlayableHandle UnityEngine.Animations.AnimationLayerMixerPlayable::GetHandle()
|
||||
extern void AnimationLayerMixerPlayable_GetHandle_m324A98D0B0BFC0441377D65CAE93C914F828721F (void);
|
||||
// 0x0000001D System.Boolean UnityEngine.Animations.AnimationLayerMixerPlayable::Equals(UnityEngine.Animations.AnimationLayerMixerPlayable)
|
||||
extern void AnimationLayerMixerPlayable_Equals_mA5D24E61E2DE1140B409F3B569DBA3C185751970 (void);
|
||||
// 0x0000001E System.Void UnityEngine.Animations.AnimationLayerMixerPlayable::SetSingleLayerOptimizationInternal(UnityEngine.Playables.PlayableHandle&,System.Boolean)
|
||||
extern void AnimationLayerMixerPlayable_SetSingleLayerOptimizationInternal_mF1EC1B461F2CCB8D7E01799875DDB5FC8FE4BBDB (void);
|
||||
// 0x0000001F System.Void UnityEngine.Animations.AnimationLayerMixerPlayable::.cctor()
|
||||
extern void AnimationLayerMixerPlayable__cctor_m27A78F2EB8840FFCC84901AB4E916ACCE8D8E49B (void);
|
||||
// 0x00000020 System.Void UnityEngine.Animations.AnimationMixerPlayable::.ctor(UnityEngine.Playables.PlayableHandle)
|
||||
extern void AnimationMixerPlayable__ctor_mBF84CC064549C2C00B2AE1174018335958EB7EA7 (void);
|
||||
// 0x00000021 UnityEngine.Playables.PlayableHandle UnityEngine.Animations.AnimationMixerPlayable::GetHandle()
|
||||
extern void AnimationMixerPlayable_GetHandle_mBA6CEB1579A713A985D474E75BC282728318882F (void);
|
||||
// 0x00000022 System.Boolean UnityEngine.Animations.AnimationMixerPlayable::Equals(UnityEngine.Animations.AnimationMixerPlayable)
|
||||
extern void AnimationMixerPlayable_Equals_m6EBE215636EEEA3196A43F4D6C1FE6DD704AFA4E (void);
|
||||
// 0x00000023 System.Void UnityEngine.Animations.AnimationMixerPlayable::.cctor()
|
||||
extern void AnimationMixerPlayable__cctor_m7D67E8E778387293AF1ACB1FDBE6ADA3E456A969 (void);
|
||||
// 0x00000024 System.Void UnityEngine.Animations.AnimationMotionXToDeltaPlayable::.ctor(UnityEngine.Playables.PlayableHandle)
|
||||
extern void AnimationMotionXToDeltaPlayable__ctor_mDE3C14B4B975AC693669D66B6E41BB6432AFA940 (void);
|
||||
// 0x00000025 UnityEngine.Playables.PlayableHandle UnityEngine.Animations.AnimationMotionXToDeltaPlayable::GetHandle()
|
||||
extern void AnimationMotionXToDeltaPlayable_GetHandle_m09F605E78AD7F0135C7F57EB048031091A50E3A2 (void);
|
||||
// 0x00000026 System.Boolean UnityEngine.Animations.AnimationMotionXToDeltaPlayable::Equals(UnityEngine.Animations.AnimationMotionXToDeltaPlayable)
|
||||
extern void AnimationMotionXToDeltaPlayable_Equals_m7CBF3B7618EDBA4ECC2F3C2F54011248BC45CDCC (void);
|
||||
// 0x00000027 System.Void UnityEngine.Animations.AnimationMotionXToDeltaPlayable::.cctor()
|
||||
extern void AnimationMotionXToDeltaPlayable__cctor_m4FC582F607F00D5E2A6B97219D2D4150AFA42AF1 (void);
|
||||
// 0x00000028 System.Void UnityEngine.Animations.AnimationOffsetPlayable::.ctor(UnityEngine.Playables.PlayableHandle)
|
||||
extern void AnimationOffsetPlayable__ctor_mBF3AC6493556DAAEF608B359BEBE8FA6D9F8DBFD (void);
|
||||
// 0x00000029 UnityEngine.Playables.PlayableHandle UnityEngine.Animations.AnimationOffsetPlayable::GetHandle()
|
||||
extern void AnimationOffsetPlayable_GetHandle_m769BEFF90379AEAB0C579F7800953458CE3EBA78 (void);
|
||||
// 0x0000002A System.Boolean UnityEngine.Animations.AnimationOffsetPlayable::Equals(UnityEngine.Animations.AnimationOffsetPlayable)
|
||||
extern void AnimationOffsetPlayable_Equals_mEC28392ADD4E9639EB9228D106D93E21B3587270 (void);
|
||||
// 0x0000002B System.Void UnityEngine.Animations.AnimationOffsetPlayable::.cctor()
|
||||
extern void AnimationOffsetPlayable__cctor_m6F50D35CE1FAF52BD587DD3B440CBDE34A76B096 (void);
|
||||
// 0x0000002C System.Void UnityEngine.Animations.AnimationPosePlayable::.ctor(UnityEngine.Playables.PlayableHandle)
|
||||
extern void AnimationPosePlayable__ctor_mC6C096785918358CA7EC12BABCDF4BBD47F7BA3F (void);
|
||||
// 0x0000002D UnityEngine.Playables.PlayableHandle UnityEngine.Animations.AnimationPosePlayable::GetHandle()
|
||||
extern void AnimationPosePlayable_GetHandle_m5DC7CA4CAF3CD525D454D99EBC3D12C3571B527B (void);
|
||||
// 0x0000002E System.Boolean UnityEngine.Animations.AnimationPosePlayable::Equals(UnityEngine.Animations.AnimationPosePlayable)
|
||||
extern void AnimationPosePlayable_Equals_m10F1E7DD7037B2AB3F7DAE3E01A1DC843EABD0A3 (void);
|
||||
// 0x0000002F System.Void UnityEngine.Animations.AnimationPosePlayable::.cctor()
|
||||
extern void AnimationPosePlayable__cctor_mFA5FE84F06C8E9A89C07190055BC898525F897C4 (void);
|
||||
// 0x00000030 System.Void UnityEngine.Animations.AnimationRemoveScalePlayable::.ctor(UnityEngine.Playables.PlayableHandle)
|
||||
extern void AnimationRemoveScalePlayable__ctor_m4D6C7C4AB8E078050B0CC34C6732051CF043CFA2 (void);
|
||||
// 0x00000031 UnityEngine.Playables.PlayableHandle UnityEngine.Animations.AnimationRemoveScalePlayable::GetHandle()
|
||||
extern void AnimationRemoveScalePlayable_GetHandle_mFFA58B879F31327187A20ED30E1C814B7BEAA9C6 (void);
|
||||
// 0x00000032 System.Boolean UnityEngine.Animations.AnimationRemoveScalePlayable::Equals(UnityEngine.Animations.AnimationRemoveScalePlayable)
|
||||
extern void AnimationRemoveScalePlayable_Equals_m0ACDD59B80103591DA8E84CB387FB10778D8C327 (void);
|
||||
// 0x00000033 System.Void UnityEngine.Animations.AnimationRemoveScalePlayable::.cctor()
|
||||
extern void AnimationRemoveScalePlayable__cctor_m42E614B0B33898D92DFE06CA6045698BE94DE633 (void);
|
||||
// 0x00000034 System.Void UnityEngine.Animations.AnimationScriptPlayable::.ctor(UnityEngine.Playables.PlayableHandle)
|
||||
extern void AnimationScriptPlayable__ctor_m6DEFD72735E79009FC1484AA2A7A82E6CE601247 (void);
|
||||
// 0x00000035 UnityEngine.Playables.PlayableHandle UnityEngine.Animations.AnimationScriptPlayable::GetHandle()
|
||||
extern void AnimationScriptPlayable_GetHandle_m30355B6EE1AA3BA36D628251FB4291386D223646 (void);
|
||||
// 0x00000036 System.Boolean UnityEngine.Animations.AnimationScriptPlayable::Equals(UnityEngine.Animations.AnimationScriptPlayable)
|
||||
extern void AnimationScriptPlayable_Equals_mAD02E40704CBE4AB188DE0569052F8EA9864F4E4 (void);
|
||||
// 0x00000037 System.Void UnityEngine.Animations.AnimationScriptPlayable::.cctor()
|
||||
extern void AnimationScriptPlayable__cctor_m5ED4D3FC06BC7A51D3A48B5611F759CB00F7CF54 (void);
|
||||
// 0x00000038 System.Void UnityEngine.Animations.AnimatorControllerPlayable::.ctor(UnityEngine.Playables.PlayableHandle)
|
||||
extern void AnimatorControllerPlayable__ctor_mBCB9475E2740BE1AEB94C08BAD14D51333258BFE (void);
|
||||
// 0x00000039 UnityEngine.Playables.PlayableHandle UnityEngine.Animations.AnimatorControllerPlayable::GetHandle()
|
||||
extern void AnimatorControllerPlayable_GetHandle_m718D9A4E0DB7AC62947B1D09E47DBCD25C27AF6C (void);
|
||||
// 0x0000003A System.Void UnityEngine.Animations.AnimatorControllerPlayable::SetHandle(UnityEngine.Playables.PlayableHandle)
|
||||
extern void AnimatorControllerPlayable_SetHandle_mD86A3C0D03453FAF21903F7A52A743AB2DA6DED4 (void);
|
||||
// 0x0000003B System.Boolean UnityEngine.Animations.AnimatorControllerPlayable::Equals(UnityEngine.Animations.AnimatorControllerPlayable)
|
||||
extern void AnimatorControllerPlayable_Equals_m14125BB4CCFCDFFD098223AF20E38501BA264180 (void);
|
||||
// 0x0000003C System.Void UnityEngine.Animations.AnimatorControllerPlayable::.cctor()
|
||||
extern void AnimatorControllerPlayable__cctor_m88506D1B15D609B818DFDC6B2BCFF42ABB41B090 (void);
|
||||
static Il2CppMethodPointer s_methodPointers[60] =
|
||||
{
|
||||
StateMachineBehaviour_OnStateEnter_mB618EFE75A50CBAA3EE6471E64A3E2CA2A2C90FD,
|
||||
StateMachineBehaviour_OnStateUpdate_mC1A83A4F693AF3AB51BC592A0CE525CE4F320D6B,
|
||||
StateMachineBehaviour_OnStateExit_mC113F0B2F53847F9A6755B82D0AC53C971171CFD,
|
||||
StateMachineBehaviour_OnStateMove_m7229D5EFBA432665B9046FC3C21D463FFD281978,
|
||||
StateMachineBehaviour_OnStateIK_m310C17694D8D1B9D60D549259A39837F22FD3240,
|
||||
StateMachineBehaviour_OnStateMachineEnter_m0CEFF9E4946BFDC4F7066BEB4C961169DBC5073F,
|
||||
StateMachineBehaviour_OnStateMachineExit_m384B808E3961C6C2C375DF7487EF2B49E44E6CD7,
|
||||
StateMachineBehaviour_OnStateEnter_m491D81A9A64DE4AE02415A5909B74AE947EAE1B9,
|
||||
StateMachineBehaviour_OnStateUpdate_mF3130BE7BDD7C8B2470303FB1986A336E47CC98C,
|
||||
StateMachineBehaviour_OnStateExit_mD47A506ACE251A6341115CBE5607D05C01747127,
|
||||
StateMachineBehaviour_OnStateMove_m1A01C10E754426572C7BBA7AA13044FDA372FDFC,
|
||||
StateMachineBehaviour_OnStateIK_mCE3B4C71868B564EE6BE4B8663535058705C3B72,
|
||||
StateMachineBehaviour_OnStateMachineEnter_m0399B12419A4F990F41BD589C833E2D2C0076762,
|
||||
StateMachineBehaviour_OnStateMachineExit_mF8BB1A8851B0699FC1D85F538E16EF12C08BBB93,
|
||||
StateMachineBehaviour__ctor_m9663A75D1016E16D7E3A48E2D4E6466A041A00AB,
|
||||
AnimationEvent__ctor_mBC954085B1D18B436D08E7ADE3458B91E208F3B2,
|
||||
Animator_SetTrigger_mC9CD54D627C8843EF6E159E167449D216EF6EB30,
|
||||
Animator_ResetTrigger_m8DCA67D5A6B56702E3FAD4E18243E194B71297CC,
|
||||
Animator_get_hasBoundPlayables_mA5A6132C03593851FE80D8E7490191E051E5A1C9,
|
||||
Animator_SetTriggerString_m177C75DFBE070DE66FC08A3232444CCEA409C25E,
|
||||
Animator_ResetTriggerString_m78259348CED35F156148A64B95EBD73CE3951868,
|
||||
AnimatorOverrideController_OnInvalidateOverrideController_mA6B0AA977505FDEFDD6BCA2E941FD3A18AE1AD23,
|
||||
OnOverrideControllerDirtyCallback__ctor_mA49B11AF24CB49A9B764058DB73CE221AE54E106,
|
||||
OnOverrideControllerDirtyCallback_Invoke_m538DCB0FFFE75495DC3977DBBF55A07C570F8B5A,
|
||||
AnimationClipPlayable_GetHandle_mE775F2247901BA293DB01A8D384D3F9D02A25627,
|
||||
AnimationClipPlayable_Equals_mC5263BEA86C02CEDF93C5B14EAA168883E1DB5F4,
|
||||
AnimationLayerMixerPlayable__ctor_m28884B8B9F7E057DF947E3B43ED78EA107368BD6,
|
||||
AnimationLayerMixerPlayable_GetHandle_m324A98D0B0BFC0441377D65CAE93C914F828721F,
|
||||
AnimationLayerMixerPlayable_Equals_mA5D24E61E2DE1140B409F3B569DBA3C185751970,
|
||||
AnimationLayerMixerPlayable_SetSingleLayerOptimizationInternal_mF1EC1B461F2CCB8D7E01799875DDB5FC8FE4BBDB,
|
||||
AnimationLayerMixerPlayable__cctor_m27A78F2EB8840FFCC84901AB4E916ACCE8D8E49B,
|
||||
AnimationMixerPlayable__ctor_mBF84CC064549C2C00B2AE1174018335958EB7EA7,
|
||||
AnimationMixerPlayable_GetHandle_mBA6CEB1579A713A985D474E75BC282728318882F,
|
||||
AnimationMixerPlayable_Equals_m6EBE215636EEEA3196A43F4D6C1FE6DD704AFA4E,
|
||||
AnimationMixerPlayable__cctor_m7D67E8E778387293AF1ACB1FDBE6ADA3E456A969,
|
||||
AnimationMotionXToDeltaPlayable__ctor_mDE3C14B4B975AC693669D66B6E41BB6432AFA940,
|
||||
AnimationMotionXToDeltaPlayable_GetHandle_m09F605E78AD7F0135C7F57EB048031091A50E3A2,
|
||||
AnimationMotionXToDeltaPlayable_Equals_m7CBF3B7618EDBA4ECC2F3C2F54011248BC45CDCC,
|
||||
AnimationMotionXToDeltaPlayable__cctor_m4FC582F607F00D5E2A6B97219D2D4150AFA42AF1,
|
||||
AnimationOffsetPlayable__ctor_mBF3AC6493556DAAEF608B359BEBE8FA6D9F8DBFD,
|
||||
AnimationOffsetPlayable_GetHandle_m769BEFF90379AEAB0C579F7800953458CE3EBA78,
|
||||
AnimationOffsetPlayable_Equals_mEC28392ADD4E9639EB9228D106D93E21B3587270,
|
||||
AnimationOffsetPlayable__cctor_m6F50D35CE1FAF52BD587DD3B440CBDE34A76B096,
|
||||
AnimationPosePlayable__ctor_mC6C096785918358CA7EC12BABCDF4BBD47F7BA3F,
|
||||
AnimationPosePlayable_GetHandle_m5DC7CA4CAF3CD525D454D99EBC3D12C3571B527B,
|
||||
AnimationPosePlayable_Equals_m10F1E7DD7037B2AB3F7DAE3E01A1DC843EABD0A3,
|
||||
AnimationPosePlayable__cctor_mFA5FE84F06C8E9A89C07190055BC898525F897C4,
|
||||
AnimationRemoveScalePlayable__ctor_m4D6C7C4AB8E078050B0CC34C6732051CF043CFA2,
|
||||
AnimationRemoveScalePlayable_GetHandle_mFFA58B879F31327187A20ED30E1C814B7BEAA9C6,
|
||||
AnimationRemoveScalePlayable_Equals_m0ACDD59B80103591DA8E84CB387FB10778D8C327,
|
||||
AnimationRemoveScalePlayable__cctor_m42E614B0B33898D92DFE06CA6045698BE94DE633,
|
||||
AnimationScriptPlayable__ctor_m6DEFD72735E79009FC1484AA2A7A82E6CE601247,
|
||||
AnimationScriptPlayable_GetHandle_m30355B6EE1AA3BA36D628251FB4291386D223646,
|
||||
AnimationScriptPlayable_Equals_mAD02E40704CBE4AB188DE0569052F8EA9864F4E4,
|
||||
AnimationScriptPlayable__cctor_m5ED4D3FC06BC7A51D3A48B5611F759CB00F7CF54,
|
||||
AnimatorControllerPlayable__ctor_mBCB9475E2740BE1AEB94C08BAD14D51333258BFE,
|
||||
AnimatorControllerPlayable_GetHandle_m718D9A4E0DB7AC62947B1D09E47DBCD25C27AF6C,
|
||||
AnimatorControllerPlayable_SetHandle_mD86A3C0D03453FAF21903F7A52A743AB2DA6DED4,
|
||||
AnimatorControllerPlayable_Equals_m14125BB4CCFCDFFD098223AF20E38501BA264180,
|
||||
AnimatorControllerPlayable__cctor_m88506D1B15D609B818DFDC6B2BCFF42ABB41B090,
|
||||
};
|
||||
extern void AnimationClipPlayable_GetHandle_mE775F2247901BA293DB01A8D384D3F9D02A25627_AdjustorThunk (void);
|
||||
extern void AnimationClipPlayable_Equals_mC5263BEA86C02CEDF93C5B14EAA168883E1DB5F4_AdjustorThunk (void);
|
||||
extern void AnimationLayerMixerPlayable__ctor_m28884B8B9F7E057DF947E3B43ED78EA107368BD6_AdjustorThunk (void);
|
||||
extern void AnimationLayerMixerPlayable_GetHandle_m324A98D0B0BFC0441377D65CAE93C914F828721F_AdjustorThunk (void);
|
||||
extern void AnimationLayerMixerPlayable_Equals_mA5D24E61E2DE1140B409F3B569DBA3C185751970_AdjustorThunk (void);
|
||||
extern void AnimationMixerPlayable__ctor_mBF84CC064549C2C00B2AE1174018335958EB7EA7_AdjustorThunk (void);
|
||||
extern void AnimationMixerPlayable_GetHandle_mBA6CEB1579A713A985D474E75BC282728318882F_AdjustorThunk (void);
|
||||
extern void AnimationMixerPlayable_Equals_m6EBE215636EEEA3196A43F4D6C1FE6DD704AFA4E_AdjustorThunk (void);
|
||||
extern void AnimationMotionXToDeltaPlayable__ctor_mDE3C14B4B975AC693669D66B6E41BB6432AFA940_AdjustorThunk (void);
|
||||
extern void AnimationMotionXToDeltaPlayable_GetHandle_m09F605E78AD7F0135C7F57EB048031091A50E3A2_AdjustorThunk (void);
|
||||
extern void AnimationMotionXToDeltaPlayable_Equals_m7CBF3B7618EDBA4ECC2F3C2F54011248BC45CDCC_AdjustorThunk (void);
|
||||
extern void AnimationOffsetPlayable__ctor_mBF3AC6493556DAAEF608B359BEBE8FA6D9F8DBFD_AdjustorThunk (void);
|
||||
extern void AnimationOffsetPlayable_GetHandle_m769BEFF90379AEAB0C579F7800953458CE3EBA78_AdjustorThunk (void);
|
||||
extern void AnimationOffsetPlayable_Equals_mEC28392ADD4E9639EB9228D106D93E21B3587270_AdjustorThunk (void);
|
||||
extern void AnimationPosePlayable__ctor_mC6C096785918358CA7EC12BABCDF4BBD47F7BA3F_AdjustorThunk (void);
|
||||
extern void AnimationPosePlayable_GetHandle_m5DC7CA4CAF3CD525D454D99EBC3D12C3571B527B_AdjustorThunk (void);
|
||||
extern void AnimationPosePlayable_Equals_m10F1E7DD7037B2AB3F7DAE3E01A1DC843EABD0A3_AdjustorThunk (void);
|
||||
extern void AnimationRemoveScalePlayable__ctor_m4D6C7C4AB8E078050B0CC34C6732051CF043CFA2_AdjustorThunk (void);
|
||||
extern void AnimationRemoveScalePlayable_GetHandle_mFFA58B879F31327187A20ED30E1C814B7BEAA9C6_AdjustorThunk (void);
|
||||
extern void AnimationRemoveScalePlayable_Equals_m0ACDD59B80103591DA8E84CB387FB10778D8C327_AdjustorThunk (void);
|
||||
extern void AnimationScriptPlayable__ctor_m6DEFD72735E79009FC1484AA2A7A82E6CE601247_AdjustorThunk (void);
|
||||
extern void AnimationScriptPlayable_GetHandle_m30355B6EE1AA3BA36D628251FB4291386D223646_AdjustorThunk (void);
|
||||
extern void AnimationScriptPlayable_Equals_mAD02E40704CBE4AB188DE0569052F8EA9864F4E4_AdjustorThunk (void);
|
||||
extern void AnimatorControllerPlayable__ctor_mBCB9475E2740BE1AEB94C08BAD14D51333258BFE_AdjustorThunk (void);
|
||||
extern void AnimatorControllerPlayable_GetHandle_m718D9A4E0DB7AC62947B1D09E47DBCD25C27AF6C_AdjustorThunk (void);
|
||||
extern void AnimatorControllerPlayable_SetHandle_mD86A3C0D03453FAF21903F7A52A743AB2DA6DED4_AdjustorThunk (void);
|
||||
extern void AnimatorControllerPlayable_Equals_m14125BB4CCFCDFFD098223AF20E38501BA264180_AdjustorThunk (void);
|
||||
static Il2CppTokenAdjustorThunkPair s_adjustorThunks[27] =
|
||||
{
|
||||
{ 0x06000019, AnimationClipPlayable_GetHandle_mE775F2247901BA293DB01A8D384D3F9D02A25627_AdjustorThunk },
|
||||
{ 0x0600001A, AnimationClipPlayable_Equals_mC5263BEA86C02CEDF93C5B14EAA168883E1DB5F4_AdjustorThunk },
|
||||
{ 0x0600001B, AnimationLayerMixerPlayable__ctor_m28884B8B9F7E057DF947E3B43ED78EA107368BD6_AdjustorThunk },
|
||||
{ 0x0600001C, AnimationLayerMixerPlayable_GetHandle_m324A98D0B0BFC0441377D65CAE93C914F828721F_AdjustorThunk },
|
||||
{ 0x0600001D, AnimationLayerMixerPlayable_Equals_mA5D24E61E2DE1140B409F3B569DBA3C185751970_AdjustorThunk },
|
||||
{ 0x06000020, AnimationMixerPlayable__ctor_mBF84CC064549C2C00B2AE1174018335958EB7EA7_AdjustorThunk },
|
||||
{ 0x06000021, AnimationMixerPlayable_GetHandle_mBA6CEB1579A713A985D474E75BC282728318882F_AdjustorThunk },
|
||||
{ 0x06000022, AnimationMixerPlayable_Equals_m6EBE215636EEEA3196A43F4D6C1FE6DD704AFA4E_AdjustorThunk },
|
||||
{ 0x06000024, AnimationMotionXToDeltaPlayable__ctor_mDE3C14B4B975AC693669D66B6E41BB6432AFA940_AdjustorThunk },
|
||||
{ 0x06000025, AnimationMotionXToDeltaPlayable_GetHandle_m09F605E78AD7F0135C7F57EB048031091A50E3A2_AdjustorThunk },
|
||||
{ 0x06000026, AnimationMotionXToDeltaPlayable_Equals_m7CBF3B7618EDBA4ECC2F3C2F54011248BC45CDCC_AdjustorThunk },
|
||||
{ 0x06000028, AnimationOffsetPlayable__ctor_mBF3AC6493556DAAEF608B359BEBE8FA6D9F8DBFD_AdjustorThunk },
|
||||
{ 0x06000029, AnimationOffsetPlayable_GetHandle_m769BEFF90379AEAB0C579F7800953458CE3EBA78_AdjustorThunk },
|
||||
{ 0x0600002A, AnimationOffsetPlayable_Equals_mEC28392ADD4E9639EB9228D106D93E21B3587270_AdjustorThunk },
|
||||
{ 0x0600002C, AnimationPosePlayable__ctor_mC6C096785918358CA7EC12BABCDF4BBD47F7BA3F_AdjustorThunk },
|
||||
{ 0x0600002D, AnimationPosePlayable_GetHandle_m5DC7CA4CAF3CD525D454D99EBC3D12C3571B527B_AdjustorThunk },
|
||||
{ 0x0600002E, AnimationPosePlayable_Equals_m10F1E7DD7037B2AB3F7DAE3E01A1DC843EABD0A3_AdjustorThunk },
|
||||
{ 0x06000030, AnimationRemoveScalePlayable__ctor_m4D6C7C4AB8E078050B0CC34C6732051CF043CFA2_AdjustorThunk },
|
||||
{ 0x06000031, AnimationRemoveScalePlayable_GetHandle_mFFA58B879F31327187A20ED30E1C814B7BEAA9C6_AdjustorThunk },
|
||||
{ 0x06000032, AnimationRemoveScalePlayable_Equals_m0ACDD59B80103591DA8E84CB387FB10778D8C327_AdjustorThunk },
|
||||
{ 0x06000034, AnimationScriptPlayable__ctor_m6DEFD72735E79009FC1484AA2A7A82E6CE601247_AdjustorThunk },
|
||||
{ 0x06000035, AnimationScriptPlayable_GetHandle_m30355B6EE1AA3BA36D628251FB4291386D223646_AdjustorThunk },
|
||||
{ 0x06000036, AnimationScriptPlayable_Equals_mAD02E40704CBE4AB188DE0569052F8EA9864F4E4_AdjustorThunk },
|
||||
{ 0x06000038, AnimatorControllerPlayable__ctor_mBCB9475E2740BE1AEB94C08BAD14D51333258BFE_AdjustorThunk },
|
||||
{ 0x06000039, AnimatorControllerPlayable_GetHandle_m718D9A4E0DB7AC62947B1D09E47DBCD25C27AF6C_AdjustorThunk },
|
||||
{ 0x0600003A, AnimatorControllerPlayable_SetHandle_mD86A3C0D03453FAF21903F7A52A743AB2DA6DED4_AdjustorThunk },
|
||||
{ 0x0600003B, AnimatorControllerPlayable_Equals_m14125BB4CCFCDFFD098223AF20E38501BA264180_AdjustorThunk },
|
||||
};
|
||||
static const int32_t s_InvokerIndices[60] =
|
||||
{
|
||||
819,
|
||||
819,
|
||||
819,
|
||||
819,
|
||||
819,
|
||||
1554,
|
||||
1554,
|
||||
543,
|
||||
543,
|
||||
543,
|
||||
543,
|
||||
543,
|
||||
826,
|
||||
826,
|
||||
3395,
|
||||
3395,
|
||||
2760,
|
||||
2760,
|
||||
3250,
|
||||
2760,
|
||||
2760,
|
||||
5115,
|
||||
1556,
|
||||
3395,
|
||||
3317,
|
||||
1894,
|
||||
1577,
|
||||
3317,
|
||||
1895,
|
||||
4692,
|
||||
5220,
|
||||
2767,
|
||||
3317,
|
||||
1896,
|
||||
5220,
|
||||
2767,
|
||||
3317,
|
||||
1897,
|
||||
5220,
|
||||
2767,
|
||||
3317,
|
||||
1898,
|
||||
5220,
|
||||
2767,
|
||||
3317,
|
||||
1899,
|
||||
5220,
|
||||
2767,
|
||||
3317,
|
||||
1900,
|
||||
5220,
|
||||
2767,
|
||||
3317,
|
||||
1901,
|
||||
5220,
|
||||
2767,
|
||||
3317,
|
||||
2767,
|
||||
1902,
|
||||
5220,
|
||||
};
|
||||
IL2CPP_EXTERN_C const Il2CppCodeGenModule g_UnityEngine_AnimationModule_CodeGenModule;
|
||||
const Il2CppCodeGenModule g_UnityEngine_AnimationModule_CodeGenModule =
|
||||
{
|
||||
"UnityEngine.AnimationModule.dll",
|
||||
60,
|
||||
s_methodPointers,
|
||||
27,
|
||||
s_adjustorThunks,
|
||||
s_InvokerIndices,
|
||||
0,
|
||||
NULL,
|
||||
0,
|
||||
NULL,
|
||||
0,
|
||||
NULL,
|
||||
NULL,
|
||||
NULL, // module initializer,
|
||||
NULL,
|
||||
NULL,
|
||||
NULL,
|
||||
};
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,340 @@
|
||||
#include "pch-c.h"
|
||||
#ifndef _MSC_VER
|
||||
# include <alloca.h>
|
||||
#else
|
||||
# include <malloc.h>
|
||||
#endif
|
||||
|
||||
|
||||
#include "codegen/il2cpp-codegen-metadata.h"
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// 0x00000001 System.Void UnityEngine.AudioSettings::InvokeOnAudioConfigurationChanged(System.Boolean)
|
||||
extern void AudioSettings_InvokeOnAudioConfigurationChanged_m8273D3AEB24F4C3E374238B6F699BE6696808E85 (void);
|
||||
// 0x00000002 System.Void UnityEngine.AudioSettings::InvokeOnAudioSystemShuttingDown()
|
||||
extern void AudioSettings_InvokeOnAudioSystemShuttingDown_m1B9895D60B3267EBDEC69B9169730DBAD8325E90 (void);
|
||||
// 0x00000003 System.Void UnityEngine.AudioSettings::InvokeOnAudioSystemStartedUp()
|
||||
extern void AudioSettings_InvokeOnAudioSystemStartedUp_m7FE042936237E5BDCB20299D8C4CF583B661468C (void);
|
||||
// 0x00000004 System.Boolean UnityEngine.AudioSettings::StartAudioOutput()
|
||||
extern void AudioSettings_StartAudioOutput_mB04D851DD0E6115DEEFB55779F880146263C67BE (void);
|
||||
// 0x00000005 System.Boolean UnityEngine.AudioSettings::StopAudioOutput()
|
||||
extern void AudioSettings_StopAudioOutput_m3FE7A8EADAB2FB570BB05F7C353E25E15885D1CB (void);
|
||||
// 0x00000006 System.Void UnityEngine.AudioSettings/AudioConfigurationChangeHandler::.ctor(System.Object,System.IntPtr)
|
||||
extern void AudioConfigurationChangeHandler__ctor_mA9827AB9472EC8EE0A0F0FC24EBC06B4740DD944 (void);
|
||||
// 0x00000007 System.Void UnityEngine.AudioSettings/AudioConfigurationChangeHandler::Invoke(System.Boolean)
|
||||
extern void AudioConfigurationChangeHandler_Invoke_m4DC27DD11512481B60071B20284E6886DAE54DE2 (void);
|
||||
// 0x00000008 System.Boolean UnityEngine.AudioSettings/Mobile::get_muteState()
|
||||
extern void Mobile_get_muteState_m64C1E8C61537317A7F153E1A72F7D39D85DA684D (void);
|
||||
// 0x00000009 System.Void UnityEngine.AudioSettings/Mobile::set_muteState(System.Boolean)
|
||||
extern void Mobile_set_muteState_m7C9A464BCA3762330E18CCAD79AF6C47B863CA02 (void);
|
||||
// 0x0000000A System.Boolean UnityEngine.AudioSettings/Mobile::get_stopAudioOutputOnMute()
|
||||
extern void Mobile_get_stopAudioOutputOnMute_m43EC82258D38C418353DFE19F32B51B64B18DCCA (void);
|
||||
// 0x0000000B System.Void UnityEngine.AudioSettings/Mobile::InvokeOnMuteStateChanged(System.Boolean)
|
||||
extern void Mobile_InvokeOnMuteStateChanged_mE5242862F948BA9FBB013A2B45F645B6A21E6198 (void);
|
||||
// 0x0000000C System.Boolean UnityEngine.AudioSettings/Mobile::InvokeIsStopAudioOutputOnMuteEnabled()
|
||||
extern void Mobile_InvokeIsStopAudioOutputOnMuteEnabled_m854CB455C7BE7ADC06BABCB9AA24F60309AE7ED1 (void);
|
||||
// 0x0000000D System.Void UnityEngine.AudioSettings/Mobile::StartAudioOutput()
|
||||
extern void Mobile_StartAudioOutput_m731D1EEEE7A0D56BAADD571BA0FCAC13FB071223 (void);
|
||||
// 0x0000000E System.Void UnityEngine.AudioSettings/Mobile::StopAudioOutput()
|
||||
extern void Mobile_StopAudioOutput_m10B8CEF668EE4967D0AD1D6741B6A37540C28A46 (void);
|
||||
// 0x0000000F System.Void UnityEngine.AudioClip::.ctor()
|
||||
extern void AudioClip__ctor_m038DA97CB07076D1D9391E1E103F0F41D3622F89 (void);
|
||||
// 0x00000010 System.Boolean UnityEngine.AudioClip::GetData(UnityEngine.AudioClip,System.Single[],System.Int32,System.Int32)
|
||||
extern void AudioClip_GetData_mBDEFD7D7C8E5DEA3CCEE2D7DB406DBB0C244924E (void);
|
||||
// 0x00000011 System.Boolean UnityEngine.AudioClip::SetData(UnityEngine.AudioClip,System.Single[],System.Int32,System.Int32)
|
||||
extern void AudioClip_SetData_mB49A9BC4639C62B9C8B22319D33D46AAD176BC3B (void);
|
||||
// 0x00000012 UnityEngine.AudioClip UnityEngine.AudioClip::Construct_Internal()
|
||||
extern void AudioClip_Construct_Internal_m88BC07CE3F412DDB62820F9430D1D52DA42A26F6 (void);
|
||||
// 0x00000013 System.String UnityEngine.AudioClip::GetName()
|
||||
extern void AudioClip_GetName_m561BBA037957E25D5BC5A962A1AA0C789895C9D1 (void);
|
||||
// 0x00000014 System.Void UnityEngine.AudioClip::CreateUserSound(System.String,System.Int32,System.Int32,System.Int32,System.Boolean)
|
||||
extern void AudioClip_CreateUserSound_m34DA102DD6848D555D4A9D45AFAA9D3E5574BC45 (void);
|
||||
// 0x00000015 System.Single UnityEngine.AudioClip::get_length()
|
||||
extern void AudioClip_get_length_m6102CB29AF65988797452E4D6E43D4788303873D (void);
|
||||
// 0x00000016 System.Int32 UnityEngine.AudioClip::get_samples()
|
||||
extern void AudioClip_get_samples_mDEA01CA75E7DEA0F8D480E4AF97FB96085BCF38E (void);
|
||||
// 0x00000017 System.Int32 UnityEngine.AudioClip::get_channels()
|
||||
extern void AudioClip_get_channels_mFEECF5D6389D196BA5102EB79257298B9FDC9F84 (void);
|
||||
// 0x00000018 System.Int32 UnityEngine.AudioClip::get_frequency()
|
||||
extern void AudioClip_get_frequency_m6647E10F4B2B1335187B0066E82468CCCF19647B (void);
|
||||
// 0x00000019 System.Boolean UnityEngine.AudioClip::UnloadAudioData()
|
||||
extern void AudioClip_UnloadAudioData_m4022A02B836CDC945D634DD7CB4DA0018F718E62 (void);
|
||||
// 0x0000001A UnityEngine.AudioDataLoadState UnityEngine.AudioClip::get_loadState()
|
||||
extern void AudioClip_get_loadState_mD5E89ED3E6C1C706C021598FDF86FEB7BF5DE669 (void);
|
||||
// 0x0000001B System.Boolean UnityEngine.AudioClip::GetData(System.Single[],System.Int32)
|
||||
extern void AudioClip_GetData_m1F6480FFDA2E354A7D8C8DE40F61AAB5AF6B4A1D (void);
|
||||
// 0x0000001C System.Boolean UnityEngine.AudioClip::SetData(System.Single[],System.Int32)
|
||||
extern void AudioClip_SetData_m7B473C614C11953D746770F4F89B44600B5A6AF3 (void);
|
||||
// 0x0000001D UnityEngine.AudioClip UnityEngine.AudioClip::Create(System.String,System.Int32,System.Int32,System.Int32,System.Boolean)
|
||||
extern void AudioClip_Create_mE8111F06981E42666B6A9A59D0A3EBE002D2CDFB (void);
|
||||
// 0x0000001E UnityEngine.AudioClip UnityEngine.AudioClip::Create(System.String,System.Int32,System.Int32,System.Int32,System.Boolean,UnityEngine.AudioClip/PCMReaderCallback,UnityEngine.AudioClip/PCMSetPositionCallback)
|
||||
extern void AudioClip_Create_m988FEB04BC74440E65C3CF07414E4867AAE737F8 (void);
|
||||
// 0x0000001F System.Void UnityEngine.AudioClip::add_m_PCMReaderCallback(UnityEngine.AudioClip/PCMReaderCallback)
|
||||
extern void AudioClip_add_m_PCMReaderCallback_mA226EA143D90E04117A740FC9FA9F1111346CA83 (void);
|
||||
// 0x00000020 System.Void UnityEngine.AudioClip::remove_m_PCMReaderCallback(UnityEngine.AudioClip/PCMReaderCallback)
|
||||
extern void AudioClip_remove_m_PCMReaderCallback_m3258A455005F4A94570B4F8FE28A5EDA91A88412 (void);
|
||||
// 0x00000021 System.Void UnityEngine.AudioClip::add_m_PCMSetPositionCallback(UnityEngine.AudioClip/PCMSetPositionCallback)
|
||||
extern void AudioClip_add_m_PCMSetPositionCallback_mB280AD93A847C65F536D846FECC7DCBE9266C37F (void);
|
||||
// 0x00000022 System.Void UnityEngine.AudioClip::remove_m_PCMSetPositionCallback(UnityEngine.AudioClip/PCMSetPositionCallback)
|
||||
extern void AudioClip_remove_m_PCMSetPositionCallback_m39598139640580138742F129E0510917DF2E233C (void);
|
||||
// 0x00000023 System.Void UnityEngine.AudioClip::InvokePCMReaderCallback_Internal(System.Single[])
|
||||
extern void AudioClip_InvokePCMReaderCallback_Internal_m766E5705AB5AE16F5F142867CC3758ABE4BF462C (void);
|
||||
// 0x00000024 System.Void UnityEngine.AudioClip::InvokePCMSetPositionCallback_Internal(System.Int32)
|
||||
extern void AudioClip_InvokePCMSetPositionCallback_Internal_m986EF703B7DDE42343730DE93A095D05B9F4DBB8 (void);
|
||||
// 0x00000025 System.Void UnityEngine.AudioClip/PCMReaderCallback::.ctor(System.Object,System.IntPtr)
|
||||
extern void PCMReaderCallback__ctor_mF621B6CC1A4BA6525190C5037401CF2FD5C0CF28 (void);
|
||||
// 0x00000026 System.Void UnityEngine.AudioClip/PCMReaderCallback::Invoke(System.Single[])
|
||||
extern void PCMReaderCallback_Invoke_m76784C690C36B513E2AA5B0E4FD9831B2C7E5152 (void);
|
||||
// 0x00000027 System.Void UnityEngine.AudioClip/PCMSetPositionCallback::.ctor(System.Object,System.IntPtr)
|
||||
extern void PCMSetPositionCallback__ctor_mD16F77DDB552EB69BB3F5EF39420B2F09F95455B (void);
|
||||
// 0x00000028 System.Void UnityEngine.AudioClip/PCMSetPositionCallback::Invoke(System.Int32)
|
||||
extern void PCMSetPositionCallback_Invoke_m434D4F02FA25F91DF6199EC5A799C551C7F93702 (void);
|
||||
// 0x00000029 System.Single UnityEngine.AudioSource::GetPitch(UnityEngine.AudioSource)
|
||||
extern void AudioSource_GetPitch_m80F6D2BAF966F669253E9231AFCFFC303779913D (void);
|
||||
// 0x0000002A System.Void UnityEngine.AudioSource::SetPitch(UnityEngine.AudioSource,System.Single)
|
||||
extern void AudioSource_SetPitch_mE75DEDF8F37301BDA63E0F545A7A00850C24F53E (void);
|
||||
// 0x0000002B System.Void UnityEngine.AudioSource::PlayHelper(UnityEngine.AudioSource,System.UInt64)
|
||||
extern void AudioSource_PlayHelper_m4DE8C48925C3548BED306DAB9F87939F24A46960 (void);
|
||||
// 0x0000002C System.Void UnityEngine.AudioSource::Play(System.Double)
|
||||
extern void AudioSource_Play_m10DB5ACD1CC32EE433DBC10416B1450A30DE5F16 (void);
|
||||
// 0x0000002D System.Void UnityEngine.AudioSource::PlayOneShotHelper(UnityEngine.AudioSource,UnityEngine.AudioClip,System.Single)
|
||||
extern void AudioSource_PlayOneShotHelper_mD110EAF42353687BD0B1190EEF30F0C65A4CF265 (void);
|
||||
// 0x0000002E System.Void UnityEngine.AudioSource::Stop(System.Boolean)
|
||||
extern void AudioSource_Stop_m8A4872F0A2680798CD28894DD28609445C4783F5 (void);
|
||||
// 0x0000002F System.Single UnityEngine.AudioSource::get_volume()
|
||||
extern void AudioSource_get_volume_m9CCF33BC636562EA282FDE07463B547D70134EE3 (void);
|
||||
// 0x00000030 System.Void UnityEngine.AudioSource::set_volume(System.Single)
|
||||
extern void AudioSource_set_volume_mD902BBDBBDE0E3C148609BF3C05096148E90F2C0 (void);
|
||||
// 0x00000031 System.Single UnityEngine.AudioSource::get_pitch()
|
||||
extern void AudioSource_get_pitch_mB1B0B8A52400B5C798BF1E644FE1C2FFA20A9863 (void);
|
||||
// 0x00000032 System.Void UnityEngine.AudioSource::set_pitch(System.Single)
|
||||
extern void AudioSource_set_pitch_mD14631FC99BF38AAFB356D9C45546BC16CF9E811 (void);
|
||||
// 0x00000033 System.Single UnityEngine.AudioSource::get_time()
|
||||
extern void AudioSource_get_time_m130D08644F36736115FE082DAA2ED5E2C9D97A93 (void);
|
||||
// 0x00000034 System.Void UnityEngine.AudioSource::set_time(System.Single)
|
||||
extern void AudioSource_set_time_m6670372FD9C494978B7B3E01B7F4D220616F6204 (void);
|
||||
// 0x00000035 UnityEngine.AudioClip UnityEngine.AudioSource::get_clip()
|
||||
extern void AudioSource_get_clip_m4F5027066F9FC44B44192713142B0C277BB418FE (void);
|
||||
// 0x00000036 System.Void UnityEngine.AudioSource::set_clip(UnityEngine.AudioClip)
|
||||
extern void AudioSource_set_clip_mFF441895E274286C88D9C75ED5CA1B1B39528D70 (void);
|
||||
// 0x00000037 System.Void UnityEngine.AudioSource::Play()
|
||||
extern void AudioSource_Play_m95DF07111C61D0E0F00257A00384D31531D590C3 (void);
|
||||
// 0x00000038 System.Void UnityEngine.AudioSource::Play(System.UInt64)
|
||||
extern void AudioSource_Play_mC9D19FA54347ED102AD9913E3E7528BE969199FB (void);
|
||||
// 0x00000039 System.Void UnityEngine.AudioSource::PlayOneShot(UnityEngine.AudioClip)
|
||||
extern void AudioSource_PlayOneShot_m098BCAE084AABB128BB19ED805D2D985E7B75112 (void);
|
||||
// 0x0000003A System.Void UnityEngine.AudioSource::PlayOneShot(UnityEngine.AudioClip,System.Single)
|
||||
extern void AudioSource_PlayOneShot_mF6FE95C58996B38EF6E7F7482F95F5E15E0AB30B (void);
|
||||
// 0x0000003B System.Void UnityEngine.AudioSource::Stop()
|
||||
extern void AudioSource_Stop_m318F17F17A147C77FF6E0A5A7A6BE057DB90F537 (void);
|
||||
// 0x0000003C System.Void UnityEngine.AudioSource::Pause()
|
||||
extern void AudioSource_Pause_m2C2A09359E8AA924FEADECC1AFEA519B3C915B26 (void);
|
||||
// 0x0000003D System.Boolean UnityEngine.AudioSource::get_isPlaying()
|
||||
extern void AudioSource_get_isPlaying_mC203303F2F7146B2C056CB47B9391463FDF408FC (void);
|
||||
// 0x0000003E System.Void UnityEngine.AudioSource::set_playOnAwake(System.Boolean)
|
||||
extern void AudioSource_set_playOnAwake_m7EACC6ECEF12D7BA86A4E5A53603F1C8F9E11949 (void);
|
||||
// 0x0000003F UnityEngine.Playables.PlayableHandle UnityEngine.Audio.AudioClipPlayable::GetHandle()
|
||||
extern void AudioClipPlayable_GetHandle_mEA1D664328FF9B08E4F7D5EBCD4B51A754D97C44 (void);
|
||||
// 0x00000040 System.Boolean UnityEngine.Audio.AudioClipPlayable::Equals(UnityEngine.Audio.AudioClipPlayable)
|
||||
extern void AudioClipPlayable_Equals_m9C1C75ACBB74FE06AD02BE4643F6EB39413EFF83 (void);
|
||||
// 0x00000041 System.Boolean UnityEngine.Audio.AudioMixer::SetFloat(System.String,System.Single)
|
||||
extern void AudioMixer_SetFloat_m4789959013BE79E4F84F446405914908ADC3F335 (void);
|
||||
// 0x00000042 System.Boolean UnityEngine.Audio.AudioMixer::GetFloat(System.String,System.Single&)
|
||||
extern void AudioMixer_GetFloat_mAED8D277AD30D0346292555CBF81D8961117AEC9 (void);
|
||||
// 0x00000043 UnityEngine.Playables.PlayableHandle UnityEngine.Audio.AudioMixerPlayable::GetHandle()
|
||||
extern void AudioMixerPlayable_GetHandle_m6C182D9794E901D123223BB57738A302BEAB41FD (void);
|
||||
// 0x00000044 System.Boolean UnityEngine.Audio.AudioMixerPlayable::Equals(UnityEngine.Audio.AudioMixerPlayable)
|
||||
extern void AudioMixerPlayable_Equals_mDFB945EB48199A338BAD00D40FB8EEC34CF64D57 (void);
|
||||
// 0x00000045 System.Void UnityEngine.Experimental.Audio.AudioSampleProvider::InvokeSampleFramesAvailable(System.Int32)
|
||||
extern void AudioSampleProvider_InvokeSampleFramesAvailable_mEB16F7230AB65A3576BF053AC5719F8E134FBCD4 (void);
|
||||
// 0x00000046 System.Void UnityEngine.Experimental.Audio.AudioSampleProvider::InvokeSampleFramesOverflow(System.Int32)
|
||||
extern void AudioSampleProvider_InvokeSampleFramesOverflow_m66593173A527981F5EB2A5EF77B0C9119DAB5E15 (void);
|
||||
// 0x00000047 System.Void UnityEngine.Experimental.Audio.AudioSampleProvider/SampleFramesHandler::.ctor(System.Object,System.IntPtr)
|
||||
extern void SampleFramesHandler__ctor_m7DDE0BAD439CD80791140C7D42D661B598A7663A (void);
|
||||
// 0x00000048 System.Void UnityEngine.Experimental.Audio.AudioSampleProvider/SampleFramesHandler::Invoke(UnityEngine.Experimental.Audio.AudioSampleProvider,System.UInt32)
|
||||
extern void SampleFramesHandler_Invoke_m478D5645634B8C734E58B59CF7750797FC54F1BC (void);
|
||||
static Il2CppMethodPointer s_methodPointers[72] =
|
||||
{
|
||||
AudioSettings_InvokeOnAudioConfigurationChanged_m8273D3AEB24F4C3E374238B6F699BE6696808E85,
|
||||
AudioSettings_InvokeOnAudioSystemShuttingDown_m1B9895D60B3267EBDEC69B9169730DBAD8325E90,
|
||||
AudioSettings_InvokeOnAudioSystemStartedUp_m7FE042936237E5BDCB20299D8C4CF583B661468C,
|
||||
AudioSettings_StartAudioOutput_mB04D851DD0E6115DEEFB55779F880146263C67BE,
|
||||
AudioSettings_StopAudioOutput_m3FE7A8EADAB2FB570BB05F7C353E25E15885D1CB,
|
||||
AudioConfigurationChangeHandler__ctor_mA9827AB9472EC8EE0A0F0FC24EBC06B4740DD944,
|
||||
AudioConfigurationChangeHandler_Invoke_m4DC27DD11512481B60071B20284E6886DAE54DE2,
|
||||
Mobile_get_muteState_m64C1E8C61537317A7F153E1A72F7D39D85DA684D,
|
||||
Mobile_set_muteState_m7C9A464BCA3762330E18CCAD79AF6C47B863CA02,
|
||||
Mobile_get_stopAudioOutputOnMute_m43EC82258D38C418353DFE19F32B51B64B18DCCA,
|
||||
Mobile_InvokeOnMuteStateChanged_mE5242862F948BA9FBB013A2B45F645B6A21E6198,
|
||||
Mobile_InvokeIsStopAudioOutputOnMuteEnabled_m854CB455C7BE7ADC06BABCB9AA24F60309AE7ED1,
|
||||
Mobile_StartAudioOutput_m731D1EEEE7A0D56BAADD571BA0FCAC13FB071223,
|
||||
Mobile_StopAudioOutput_m10B8CEF668EE4967D0AD1D6741B6A37540C28A46,
|
||||
AudioClip__ctor_m038DA97CB07076D1D9391E1E103F0F41D3622F89,
|
||||
AudioClip_GetData_mBDEFD7D7C8E5DEA3CCEE2D7DB406DBB0C244924E,
|
||||
AudioClip_SetData_mB49A9BC4639C62B9C8B22319D33D46AAD176BC3B,
|
||||
AudioClip_Construct_Internal_m88BC07CE3F412DDB62820F9430D1D52DA42A26F6,
|
||||
AudioClip_GetName_m561BBA037957E25D5BC5A962A1AA0C789895C9D1,
|
||||
AudioClip_CreateUserSound_m34DA102DD6848D555D4A9D45AFAA9D3E5574BC45,
|
||||
AudioClip_get_length_m6102CB29AF65988797452E4D6E43D4788303873D,
|
||||
AudioClip_get_samples_mDEA01CA75E7DEA0F8D480E4AF97FB96085BCF38E,
|
||||
AudioClip_get_channels_mFEECF5D6389D196BA5102EB79257298B9FDC9F84,
|
||||
AudioClip_get_frequency_m6647E10F4B2B1335187B0066E82468CCCF19647B,
|
||||
AudioClip_UnloadAudioData_m4022A02B836CDC945D634DD7CB4DA0018F718E62,
|
||||
AudioClip_get_loadState_mD5E89ED3E6C1C706C021598FDF86FEB7BF5DE669,
|
||||
AudioClip_GetData_m1F6480FFDA2E354A7D8C8DE40F61AAB5AF6B4A1D,
|
||||
AudioClip_SetData_m7B473C614C11953D746770F4F89B44600B5A6AF3,
|
||||
AudioClip_Create_mE8111F06981E42666B6A9A59D0A3EBE002D2CDFB,
|
||||
AudioClip_Create_m988FEB04BC74440E65C3CF07414E4867AAE737F8,
|
||||
AudioClip_add_m_PCMReaderCallback_mA226EA143D90E04117A740FC9FA9F1111346CA83,
|
||||
AudioClip_remove_m_PCMReaderCallback_m3258A455005F4A94570B4F8FE28A5EDA91A88412,
|
||||
AudioClip_add_m_PCMSetPositionCallback_mB280AD93A847C65F536D846FECC7DCBE9266C37F,
|
||||
AudioClip_remove_m_PCMSetPositionCallback_m39598139640580138742F129E0510917DF2E233C,
|
||||
AudioClip_InvokePCMReaderCallback_Internal_m766E5705AB5AE16F5F142867CC3758ABE4BF462C,
|
||||
AudioClip_InvokePCMSetPositionCallback_Internal_m986EF703B7DDE42343730DE93A095D05B9F4DBB8,
|
||||
PCMReaderCallback__ctor_mF621B6CC1A4BA6525190C5037401CF2FD5C0CF28,
|
||||
PCMReaderCallback_Invoke_m76784C690C36B513E2AA5B0E4FD9831B2C7E5152,
|
||||
PCMSetPositionCallback__ctor_mD16F77DDB552EB69BB3F5EF39420B2F09F95455B,
|
||||
PCMSetPositionCallback_Invoke_m434D4F02FA25F91DF6199EC5A799C551C7F93702,
|
||||
AudioSource_GetPitch_m80F6D2BAF966F669253E9231AFCFFC303779913D,
|
||||
AudioSource_SetPitch_mE75DEDF8F37301BDA63E0F545A7A00850C24F53E,
|
||||
AudioSource_PlayHelper_m4DE8C48925C3548BED306DAB9F87939F24A46960,
|
||||
AudioSource_Play_m10DB5ACD1CC32EE433DBC10416B1450A30DE5F16,
|
||||
AudioSource_PlayOneShotHelper_mD110EAF42353687BD0B1190EEF30F0C65A4CF265,
|
||||
AudioSource_Stop_m8A4872F0A2680798CD28894DD28609445C4783F5,
|
||||
AudioSource_get_volume_m9CCF33BC636562EA282FDE07463B547D70134EE3,
|
||||
AudioSource_set_volume_mD902BBDBBDE0E3C148609BF3C05096148E90F2C0,
|
||||
AudioSource_get_pitch_mB1B0B8A52400B5C798BF1E644FE1C2FFA20A9863,
|
||||
AudioSource_set_pitch_mD14631FC99BF38AAFB356D9C45546BC16CF9E811,
|
||||
AudioSource_get_time_m130D08644F36736115FE082DAA2ED5E2C9D97A93,
|
||||
AudioSource_set_time_m6670372FD9C494978B7B3E01B7F4D220616F6204,
|
||||
AudioSource_get_clip_m4F5027066F9FC44B44192713142B0C277BB418FE,
|
||||
AudioSource_set_clip_mFF441895E274286C88D9C75ED5CA1B1B39528D70,
|
||||
AudioSource_Play_m95DF07111C61D0E0F00257A00384D31531D590C3,
|
||||
AudioSource_Play_mC9D19FA54347ED102AD9913E3E7528BE969199FB,
|
||||
AudioSource_PlayOneShot_m098BCAE084AABB128BB19ED805D2D985E7B75112,
|
||||
AudioSource_PlayOneShot_mF6FE95C58996B38EF6E7F7482F95F5E15E0AB30B,
|
||||
AudioSource_Stop_m318F17F17A147C77FF6E0A5A7A6BE057DB90F537,
|
||||
AudioSource_Pause_m2C2A09359E8AA924FEADECC1AFEA519B3C915B26,
|
||||
AudioSource_get_isPlaying_mC203303F2F7146B2C056CB47B9391463FDF408FC,
|
||||
AudioSource_set_playOnAwake_m7EACC6ECEF12D7BA86A4E5A53603F1C8F9E11949,
|
||||
AudioClipPlayable_GetHandle_mEA1D664328FF9B08E4F7D5EBCD4B51A754D97C44,
|
||||
AudioClipPlayable_Equals_m9C1C75ACBB74FE06AD02BE4643F6EB39413EFF83,
|
||||
AudioMixer_SetFloat_m4789959013BE79E4F84F446405914908ADC3F335,
|
||||
AudioMixer_GetFloat_mAED8D277AD30D0346292555CBF81D8961117AEC9,
|
||||
AudioMixerPlayable_GetHandle_m6C182D9794E901D123223BB57738A302BEAB41FD,
|
||||
AudioMixerPlayable_Equals_mDFB945EB48199A338BAD00D40FB8EEC34CF64D57,
|
||||
AudioSampleProvider_InvokeSampleFramesAvailable_mEB16F7230AB65A3576BF053AC5719F8E134FBCD4,
|
||||
AudioSampleProvider_InvokeSampleFramesOverflow_m66593173A527981F5EB2A5EF77B0C9119DAB5E15,
|
||||
SampleFramesHandler__ctor_m7DDE0BAD439CD80791140C7D42D661B598A7663A,
|
||||
SampleFramesHandler_Invoke_m478D5645634B8C734E58B59CF7750797FC54F1BC,
|
||||
};
|
||||
extern void AudioClipPlayable_GetHandle_mEA1D664328FF9B08E4F7D5EBCD4B51A754D97C44_AdjustorThunk (void);
|
||||
extern void AudioClipPlayable_Equals_m9C1C75ACBB74FE06AD02BE4643F6EB39413EFF83_AdjustorThunk (void);
|
||||
extern void AudioMixerPlayable_GetHandle_m6C182D9794E901D123223BB57738A302BEAB41FD_AdjustorThunk (void);
|
||||
extern void AudioMixerPlayable_Equals_mDFB945EB48199A338BAD00D40FB8EEC34CF64D57_AdjustorThunk (void);
|
||||
static Il2CppTokenAdjustorThunkPair s_adjustorThunks[4] =
|
||||
{
|
||||
{ 0x0600003F, AudioClipPlayable_GetHandle_mEA1D664328FF9B08E4F7D5EBCD4B51A754D97C44_AdjustorThunk },
|
||||
{ 0x06000040, AudioClipPlayable_Equals_m9C1C75ACBB74FE06AD02BE4643F6EB39413EFF83_AdjustorThunk },
|
||||
{ 0x06000043, AudioMixerPlayable_GetHandle_m6C182D9794E901D123223BB57738A302BEAB41FD_AdjustorThunk },
|
||||
{ 0x06000044, AudioMixerPlayable_Equals_mDFB945EB48199A338BAD00D40FB8EEC34CF64D57_AdjustorThunk },
|
||||
};
|
||||
static const int32_t s_InvokerIndices[72] =
|
||||
{
|
||||
5108,
|
||||
5220,
|
||||
5220,
|
||||
5176,
|
||||
5176,
|
||||
1556,
|
||||
2701,
|
||||
5176,
|
||||
5108,
|
||||
5176,
|
||||
5108,
|
||||
5176,
|
||||
5220,
|
||||
5220,
|
||||
3395,
|
||||
3817,
|
||||
3817,
|
||||
5196,
|
||||
3311,
|
||||
282,
|
||||
3348,
|
||||
3292,
|
||||
3292,
|
||||
3292,
|
||||
3250,
|
||||
3292,
|
||||
954,
|
||||
954,
|
||||
3719,
|
||||
3520,
|
||||
2760,
|
||||
2760,
|
||||
2760,
|
||||
2760,
|
||||
2760,
|
||||
2743,
|
||||
1556,
|
||||
2760,
|
||||
1556,
|
||||
2743,
|
||||
5024,
|
||||
4744,
|
||||
4746,
|
||||
2721,
|
||||
4348,
|
||||
2701,
|
||||
3348,
|
||||
2792,
|
||||
3348,
|
||||
2792,
|
||||
3348,
|
||||
2792,
|
||||
3311,
|
||||
2760,
|
||||
3395,
|
||||
2823,
|
||||
2760,
|
||||
1562,
|
||||
3395,
|
||||
3395,
|
||||
3250,
|
||||
2701,
|
||||
3317,
|
||||
1903,
|
||||
958,
|
||||
950,
|
||||
3317,
|
||||
1904,
|
||||
2743,
|
||||
2743,
|
||||
1556,
|
||||
1568,
|
||||
};
|
||||
IL2CPP_EXTERN_C const Il2CppCodeGenModule g_UnityEngine_AudioModule_CodeGenModule;
|
||||
const Il2CppCodeGenModule g_UnityEngine_AudioModule_CodeGenModule =
|
||||
{
|
||||
"UnityEngine.AudioModule.dll",
|
||||
72,
|
||||
s_methodPointers,
|
||||
4,
|
||||
s_adjustorThunks,
|
||||
s_InvokerIndices,
|
||||
0,
|
||||
NULL,
|
||||
0,
|
||||
NULL,
|
||||
0,
|
||||
NULL,
|
||||
NULL,
|
||||
NULL, // module initializer,
|
||||
NULL,
|
||||
NULL,
|
||||
NULL,
|
||||
};
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,660 @@
|
||||
#include "pch-c.h"
|
||||
#ifndef _MSC_VER
|
||||
# include <alloca.h>
|
||||
#else
|
||||
# include <malloc.h>
|
||||
#endif
|
||||
|
||||
|
||||
#include "codegen/il2cpp-codegen-metadata.h"
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// 0x00000001 System.Void UnityEngine.SocialPlatforms.ISocialPlatform::Authenticate(UnityEngine.SocialPlatforms.ILocalUser,System.Action`1<System.Boolean>)
|
||||
// 0x00000002 System.Void UnityEngine.SocialPlatforms.ISocialPlatform::Authenticate(UnityEngine.SocialPlatforms.ILocalUser,System.Action`2<System.Boolean,System.String>)
|
||||
// 0x00000003 System.Void UnityEngine.SocialPlatforms.ISocialPlatform::LoadFriends(UnityEngine.SocialPlatforms.ILocalUser,System.Action`1<System.Boolean>)
|
||||
// 0x00000004 System.Boolean UnityEngine.SocialPlatforms.ILocalUser::get_authenticated()
|
||||
// 0x00000005 System.Void UnityEngine.SocialPlatforms.Range::.ctor(System.Int32,System.Int32)
|
||||
extern void Range__ctor_m54D7381A4A3634B7B0AF0847B848EBB8786B876B (void);
|
||||
// 0x00000006 System.String UnityEngine.SocialPlatforms.ILeaderboard::get_id()
|
||||
// 0x00000007 UnityEngine.SocialPlatforms.UserScope UnityEngine.SocialPlatforms.ILeaderboard::get_userScope()
|
||||
// 0x00000008 UnityEngine.SocialPlatforms.Range UnityEngine.SocialPlatforms.ILeaderboard::get_range()
|
||||
// 0x00000009 UnityEngine.SocialPlatforms.TimeScope UnityEngine.SocialPlatforms.ILeaderboard::get_timeScope()
|
||||
// 0x0000000A System.Void UnityEngine.SocialPlatforms.Impl.LocalUser::.ctor()
|
||||
extern void LocalUser__ctor_m6D2AE6DFC61CEC39842944D970E2B2B5547CBE97 (void);
|
||||
// 0x0000000B System.Void UnityEngine.SocialPlatforms.Impl.LocalUser::SetFriends(UnityEngine.SocialPlatforms.IUserProfile[])
|
||||
extern void LocalUser_SetFriends_m369BCB8021FB5A359B11D2ACB2F1CCD3DFBF0F6B (void);
|
||||
// 0x0000000C System.Void UnityEngine.SocialPlatforms.Impl.LocalUser::SetAuthenticated(System.Boolean)
|
||||
extern void LocalUser_SetAuthenticated_m1A7992E986F32450A1A97409AF772DC3A0F47E44 (void);
|
||||
// 0x0000000D System.Void UnityEngine.SocialPlatforms.Impl.LocalUser::SetUnderage(System.Boolean)
|
||||
extern void LocalUser_SetUnderage_m84D3621386D7E917F7D4AD7D2C00DE8CA8AD278C (void);
|
||||
// 0x0000000E System.Boolean UnityEngine.SocialPlatforms.Impl.LocalUser::get_authenticated()
|
||||
extern void LocalUser_get_authenticated_m3121DA81FF48CFFB4024ADECEE98F8E686497C54 (void);
|
||||
// 0x0000000F System.Void UnityEngine.SocialPlatforms.Impl.UserProfile::.ctor()
|
||||
extern void UserProfile__ctor_m12A26F8BDE41F4B55A645BB1D4038E81A877E680 (void);
|
||||
// 0x00000010 System.Void UnityEngine.SocialPlatforms.Impl.UserProfile::.ctor(System.String,System.String,System.String,System.Boolean,UnityEngine.SocialPlatforms.UserState,UnityEngine.Texture2D)
|
||||
extern void UserProfile__ctor_m3649D0E00F816E2712CA936DDBC55ADBC336BBF1 (void);
|
||||
// 0x00000011 System.String UnityEngine.SocialPlatforms.Impl.UserProfile::ToString()
|
||||
extern void UserProfile_ToString_mEB091241EC114F4F42D2CE15F127B83556EBE45D (void);
|
||||
// 0x00000012 System.Void UnityEngine.SocialPlatforms.Impl.UserProfile::SetUserName(System.String)
|
||||
extern void UserProfile_SetUserName_m107512A03197354BAF98514ED92D647F4FC778DA (void);
|
||||
// 0x00000013 System.Void UnityEngine.SocialPlatforms.Impl.UserProfile::SetUserID(System.String)
|
||||
extern void UserProfile_SetUserID_m32F417A48D4FDC4ED180EA2AD92F875996DA3353 (void);
|
||||
// 0x00000014 System.Void UnityEngine.SocialPlatforms.Impl.UserProfile::SetLegacyUserID(System.String)
|
||||
extern void UserProfile_SetLegacyUserID_m3A0B0F4DD6782D40B5CF6D575B670EC96396F030 (void);
|
||||
// 0x00000015 System.Void UnityEngine.SocialPlatforms.Impl.UserProfile::SetUserGameID(System.String)
|
||||
extern void UserProfile_SetUserGameID_m9A90E716F9DB8138181F748243D7BB12BCCAA2D5 (void);
|
||||
// 0x00000016 System.Void UnityEngine.SocialPlatforms.Impl.UserProfile::SetImage(UnityEngine.Texture2D)
|
||||
extern void UserProfile_SetImage_mEBC25331E4B4E201DB02A0442C473829E07D6221 (void);
|
||||
// 0x00000017 System.String UnityEngine.SocialPlatforms.Impl.UserProfile::get_userName()
|
||||
extern void UserProfile_get_userName_mDAAF12B06B939DDAAB6F10E8CB40B21C48A94F30 (void);
|
||||
// 0x00000018 System.String UnityEngine.SocialPlatforms.Impl.UserProfile::get_id()
|
||||
extern void UserProfile_get_id_m16A4060A0C7E4480F68D6915E6FAB15EAE973336 (void);
|
||||
// 0x00000019 System.Boolean UnityEngine.SocialPlatforms.Impl.UserProfile::get_isFriend()
|
||||
extern void UserProfile_get_isFriend_m353D113C22BFA80F0E9A1DBEC40E4EF4984AC4EC (void);
|
||||
// 0x0000001A UnityEngine.SocialPlatforms.UserState UnityEngine.SocialPlatforms.Impl.UserProfile::get_state()
|
||||
extern void UserProfile_get_state_mF5F8CF4E71CD46ADBCC58E5A3AFA715B3E5F9D4A (void);
|
||||
// 0x0000001B System.Void UnityEngine.SocialPlatforms.Impl.Achievement::.ctor(System.String,System.Double,System.Boolean,System.Boolean,System.DateTime)
|
||||
extern void Achievement__ctor_mE4B26ACD8E4220F645864036B7F9AD2E7D746B85 (void);
|
||||
// 0x0000001C System.Void UnityEngine.SocialPlatforms.Impl.Achievement::.ctor(System.String,System.Double)
|
||||
extern void Achievement__ctor_m18A74E7A97AEBD079DA90A210C02C6CE47B44FFC (void);
|
||||
// 0x0000001D System.Void UnityEngine.SocialPlatforms.Impl.Achievement::.ctor()
|
||||
extern void Achievement__ctor_m9EA819E3F3EA4B91F8998D54EF2F5B2B1E29976F (void);
|
||||
// 0x0000001E System.String UnityEngine.SocialPlatforms.Impl.Achievement::ToString()
|
||||
extern void Achievement_ToString_m15B103F95C549FCED0D581FBACD73E47310C9EAC (void);
|
||||
// 0x0000001F System.String UnityEngine.SocialPlatforms.Impl.Achievement::get_id()
|
||||
extern void Achievement_get_id_m0BDCED7ECE8BA170E619212CB2D23BD28322A0A6 (void);
|
||||
// 0x00000020 System.Void UnityEngine.SocialPlatforms.Impl.Achievement::set_id(System.String)
|
||||
extern void Achievement_set_id_mF2FB90F3D2F1F38DBDB449C956B8B35BAF6108EE (void);
|
||||
// 0x00000021 System.Double UnityEngine.SocialPlatforms.Impl.Achievement::get_percentCompleted()
|
||||
extern void Achievement_get_percentCompleted_mC0BFB768F39C110F2A851B5089C300E1C879D860 (void);
|
||||
// 0x00000022 System.Void UnityEngine.SocialPlatforms.Impl.Achievement::set_percentCompleted(System.Double)
|
||||
extern void Achievement_set_percentCompleted_mFB33E191E8D7557E178EEC6DB80B616C268824BD (void);
|
||||
// 0x00000023 System.Boolean UnityEngine.SocialPlatforms.Impl.Achievement::get_completed()
|
||||
extern void Achievement_get_completed_m5A625BD69E129E468D83A98CF4CAA4AA28E0B2BF (void);
|
||||
// 0x00000024 System.Boolean UnityEngine.SocialPlatforms.Impl.Achievement::get_hidden()
|
||||
extern void Achievement_get_hidden_m343030FB2BE6636313A09DEDCB02BE0ADB5E3A8E (void);
|
||||
// 0x00000025 System.DateTime UnityEngine.SocialPlatforms.Impl.Achievement::get_lastReportedDate()
|
||||
extern void Achievement_get_lastReportedDate_mEACB3BADB0996AF967B26378FA48BC964E68F091 (void);
|
||||
// 0x00000026 System.Void UnityEngine.SocialPlatforms.Impl.AchievementDescription::.ctor(System.String,System.String,UnityEngine.Texture2D,System.String,System.String,System.Boolean,System.Int32)
|
||||
extern void AchievementDescription__ctor_mB5F9A234974FEC3BB146511929791A1D8846E2EF (void);
|
||||
// 0x00000027 System.String UnityEngine.SocialPlatforms.Impl.AchievementDescription::ToString()
|
||||
extern void AchievementDescription_ToString_m25F3CC08322EAB311EDBC23D85F067387706DE02 (void);
|
||||
// 0x00000028 System.Void UnityEngine.SocialPlatforms.Impl.AchievementDescription::SetImage(UnityEngine.Texture2D)
|
||||
extern void AchievementDescription_SetImage_m16FC76EE05781DB25586A64D3B0D6CE3E6213CF5 (void);
|
||||
// 0x00000029 System.String UnityEngine.SocialPlatforms.Impl.AchievementDescription::get_id()
|
||||
extern void AchievementDescription_get_id_mC954988F8344E3B7E316D15EBD240A85D06A77C7 (void);
|
||||
// 0x0000002A System.Void UnityEngine.SocialPlatforms.Impl.AchievementDescription::set_id(System.String)
|
||||
extern void AchievementDescription_set_id_m48924C51CD1E02F0416AC540DC2214E4D64AF411 (void);
|
||||
// 0x0000002B System.String UnityEngine.SocialPlatforms.Impl.AchievementDescription::get_title()
|
||||
extern void AchievementDescription_get_title_m196C3AEC0457C25D95B16309E12AB246D054CB67 (void);
|
||||
// 0x0000002C System.String UnityEngine.SocialPlatforms.Impl.AchievementDescription::get_achievedDescription()
|
||||
extern void AchievementDescription_get_achievedDescription_m4EB337E95791A795A79F2C75F909E64747B682B5 (void);
|
||||
// 0x0000002D System.String UnityEngine.SocialPlatforms.Impl.AchievementDescription::get_unachievedDescription()
|
||||
extern void AchievementDescription_get_unachievedDescription_mE98806AB14F770F2A9CBA7E1024052FA259D43E5 (void);
|
||||
// 0x0000002E System.Boolean UnityEngine.SocialPlatforms.Impl.AchievementDescription::get_hidden()
|
||||
extern void AchievementDescription_get_hidden_mA35899496122E49F7333BB5F5B5B6AE0E68F017E (void);
|
||||
// 0x0000002F System.Int32 UnityEngine.SocialPlatforms.Impl.AchievementDescription::get_points()
|
||||
extern void AchievementDescription_get_points_m222DBD457CA6F5629758C211668917507B316DB3 (void);
|
||||
// 0x00000030 System.Void UnityEngine.SocialPlatforms.Impl.Score::.ctor(System.String,System.Int64)
|
||||
extern void Score__ctor_mCA767E4E990F5CB9657921695D4983D721BEA751 (void);
|
||||
// 0x00000031 System.Void UnityEngine.SocialPlatforms.Impl.Score::.ctor(System.String,System.Int64,System.String,System.DateTime,System.String,System.Int32)
|
||||
extern void Score__ctor_mD90E3983F2E8AF6001AB7C5E54497752F21E0F31 (void);
|
||||
// 0x00000032 System.String UnityEngine.SocialPlatforms.Impl.Score::ToString()
|
||||
extern void Score_ToString_m497A4E6B7AA8D2B8433137127949781736A16037 (void);
|
||||
// 0x00000033 System.String UnityEngine.SocialPlatforms.Impl.Score::get_leaderboardID()
|
||||
extern void Score_get_leaderboardID_m46C97C5AFC37C00BFBEE51457BD6149B874E114A (void);
|
||||
// 0x00000034 System.Void UnityEngine.SocialPlatforms.Impl.Score::set_leaderboardID(System.String)
|
||||
extern void Score_set_leaderboardID_m6F297139EFA0D2AA106B58FA267AFF7A147A85DB (void);
|
||||
// 0x00000035 System.Int64 UnityEngine.SocialPlatforms.Impl.Score::get_value()
|
||||
extern void Score_get_value_m2978563520D7392815E60349F89A5A1B5516DE5E (void);
|
||||
// 0x00000036 System.Void UnityEngine.SocialPlatforms.Impl.Score::set_value(System.Int64)
|
||||
extern void Score_set_value_m7332E2AAE1792ECEA5016FA51F4E4403CDA120C3 (void);
|
||||
// 0x00000037 System.Void UnityEngine.SocialPlatforms.Impl.Leaderboard::.ctor()
|
||||
extern void Leaderboard__ctor_mFB0608CFF4A090982904F495B84A91DC0FAC5B73 (void);
|
||||
// 0x00000038 System.String UnityEngine.SocialPlatforms.Impl.Leaderboard::ToString()
|
||||
extern void Leaderboard_ToString_m13D23F36219548442D56D029B561F628305F3500 (void);
|
||||
// 0x00000039 System.Void UnityEngine.SocialPlatforms.Impl.Leaderboard::SetLocalUserScore(UnityEngine.SocialPlatforms.IScore)
|
||||
extern void Leaderboard_SetLocalUserScore_m424D44D0AFCBA825FA9604E8BBB538854E1E0C4E (void);
|
||||
// 0x0000003A System.Void UnityEngine.SocialPlatforms.Impl.Leaderboard::SetMaxRange(System.UInt32)
|
||||
extern void Leaderboard_SetMaxRange_m1C820B01C8989228954B466EDC4C1B8DC95EDE5B (void);
|
||||
// 0x0000003B System.Void UnityEngine.SocialPlatforms.Impl.Leaderboard::SetScores(UnityEngine.SocialPlatforms.IScore[])
|
||||
extern void Leaderboard_SetScores_m0ACEEFFAD67AE7F7DC644DD034F5F2C431265943 (void);
|
||||
// 0x0000003C System.Void UnityEngine.SocialPlatforms.Impl.Leaderboard::SetTitle(System.String)
|
||||
extern void Leaderboard_SetTitle_mF9ECC4ECBF137AF4C5AD6A2338AB8786D86EADF2 (void);
|
||||
// 0x0000003D System.String[] UnityEngine.SocialPlatforms.Impl.Leaderboard::GetUserFilter()
|
||||
extern void Leaderboard_GetUserFilter_m859FFF97FCAF7D42B215AA0166FCB6B8B0025FF3 (void);
|
||||
// 0x0000003E System.String UnityEngine.SocialPlatforms.Impl.Leaderboard::get_id()
|
||||
extern void Leaderboard_get_id_mA5577E5D07BEE409EF2CDE6177AEB90547554770 (void);
|
||||
// 0x0000003F System.Void UnityEngine.SocialPlatforms.Impl.Leaderboard::set_id(System.String)
|
||||
extern void Leaderboard_set_id_m384FB70C2196021186F68CDCB7EA91DF88129719 (void);
|
||||
// 0x00000040 UnityEngine.SocialPlatforms.UserScope UnityEngine.SocialPlatforms.Impl.Leaderboard::get_userScope()
|
||||
extern void Leaderboard_get_userScope_m84E19D835910E26104D25567BA0B1C6A518FC5C1 (void);
|
||||
// 0x00000041 System.Void UnityEngine.SocialPlatforms.Impl.Leaderboard::set_userScope(UnityEngine.SocialPlatforms.UserScope)
|
||||
extern void Leaderboard_set_userScope_m43E61AEA535770AB7D3A6E67B72917D954CB048A (void);
|
||||
// 0x00000042 UnityEngine.SocialPlatforms.Range UnityEngine.SocialPlatforms.Impl.Leaderboard::get_range()
|
||||
extern void Leaderboard_get_range_m98008ADA839E76C8D69D152F7FC6EDBF2F6985DB (void);
|
||||
// 0x00000043 System.Void UnityEngine.SocialPlatforms.Impl.Leaderboard::set_range(UnityEngine.SocialPlatforms.Range)
|
||||
extern void Leaderboard_set_range_mD56709B5A37AEEB0BA5D6702261CA840891849EA (void);
|
||||
// 0x00000044 UnityEngine.SocialPlatforms.TimeScope UnityEngine.SocialPlatforms.Impl.Leaderboard::get_timeScope()
|
||||
extern void Leaderboard_get_timeScope_mB7893524B11F9CF2C739B269C6CA34F19B1FC95E (void);
|
||||
// 0x00000045 System.Void UnityEngine.SocialPlatforms.Impl.Leaderboard::set_timeScope(UnityEngine.SocialPlatforms.TimeScope)
|
||||
extern void Leaderboard_set_timeScope_m3248C6661CA59EDF283927C63D9030FD1763E3EE (void);
|
||||
// 0x00000046 UnityEngine.SocialPlatforms.Impl.UserProfile UnityEngine.SocialPlatforms.GameCenter.GcUserProfileData::ToUserProfile()
|
||||
extern void GcUserProfileData_ToUserProfile_m887526D751D39B2B34AA0BE6C79509C2A50BEFF0 (void);
|
||||
// 0x00000047 System.Void UnityEngine.SocialPlatforms.GameCenter.GcUserProfileData::AddToArray(UnityEngine.SocialPlatforms.Impl.UserProfile[]&,System.Int32)
|
||||
extern void GcUserProfileData_AddToArray_m9CC6C97BD081C9EC250AAA5E9BDCD398AF724BFB (void);
|
||||
// 0x00000048 UnityEngine.SocialPlatforms.Impl.AchievementDescription UnityEngine.SocialPlatforms.GameCenter.GcAchievementDescriptionData::ToAchievementDescription()
|
||||
extern void GcAchievementDescriptionData_ToAchievementDescription_mA95A2FA7D828072E68C98ADBED56D66FAA59AEA3 (void);
|
||||
// 0x00000049 UnityEngine.SocialPlatforms.Impl.Achievement UnityEngine.SocialPlatforms.GameCenter.GcAchievementData::ToAchievement()
|
||||
extern void GcAchievementData_ToAchievement_mCE88D5DB0AD1F428DFA7C6B6288F1EAC1B4382C4 (void);
|
||||
// 0x0000004A UnityEngine.SocialPlatforms.Impl.Score UnityEngine.SocialPlatforms.GameCenter.GcScoreData::ToScore()
|
||||
extern void GcScoreData_ToScore_m14704CC9F232CE249D9C85D2E8D330ADBE1C459E (void);
|
||||
// 0x0000004B System.Void UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::ClearAchievementDescriptions(System.Int32)
|
||||
extern void GameCenterPlatform_ClearAchievementDescriptions_mFC0180DC036AEC26DE512750183DBF28716D1AD8 (void);
|
||||
// 0x0000004C System.Void UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::SetAchievementDescription(UnityEngine.SocialPlatforms.GameCenter.GcAchievementDescriptionData,System.Int32)
|
||||
extern void GameCenterPlatform_SetAchievementDescription_mAF211CCF334C2D12447A979CF93BEC1DC46228DD (void);
|
||||
// 0x0000004D System.Void UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::SetAchievementDescriptionImage(UnityEngine.Texture2D,System.Int32)
|
||||
extern void GameCenterPlatform_SetAchievementDescriptionImage_mC749EF8DFCF2B3A7D1AE589DD00A75425768C7BA (void);
|
||||
// 0x0000004E System.Void UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::TriggerAchievementDescriptionCallback(System.Action`1<UnityEngine.SocialPlatforms.IAchievementDescription[]>)
|
||||
extern void GameCenterPlatform_TriggerAchievementDescriptionCallback_m0F1810085F7010D4375CCAFA088B733436888DEA (void);
|
||||
// 0x0000004F System.Void UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::AuthenticateCallbackWrapper(System.Int32,System.String)
|
||||
extern void GameCenterPlatform_AuthenticateCallbackWrapper_mBBDEF86CA2DA410C1ABD8DFBDEEA558F53D11E57 (void);
|
||||
// 0x00000050 System.Void UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::ClearFriends(System.Int32)
|
||||
extern void GameCenterPlatform_ClearFriends_m45B4C09623AE8DB864C43A54A36A745CD96962F6 (void);
|
||||
// 0x00000051 System.Void UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::SetFriends(UnityEngine.SocialPlatforms.GameCenter.GcUserProfileData,System.Int32)
|
||||
extern void GameCenterPlatform_SetFriends_mC9766A473E039C70D2578FCDA79A1A40A68B2946 (void);
|
||||
// 0x00000052 System.Void UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::SetFriendImage(UnityEngine.Texture2D,System.Int32)
|
||||
extern void GameCenterPlatform_SetFriendImage_m9E454400B1CDAEDC2096043B6901DB41879693DE (void);
|
||||
// 0x00000053 System.Void UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::TriggerFriendsCallbackWrapper(System.Action`1<System.Boolean>,System.Int32)
|
||||
extern void GameCenterPlatform_TriggerFriendsCallbackWrapper_m0A2B35B02A9548A7B6F4B48D8CC93327F6D2C941 (void);
|
||||
// 0x00000054 System.Void UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::AchievementCallbackWrapper(System.Action`1<UnityEngine.SocialPlatforms.IAchievement[]>,UnityEngine.SocialPlatforms.GameCenter.GcAchievementData[])
|
||||
extern void GameCenterPlatform_AchievementCallbackWrapper_m5F495D50FF3F29F655280DB50B653BA1B1F8E87A (void);
|
||||
// 0x00000055 System.Void UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::ProgressCallbackWrapper(System.Action`1<System.Boolean>,System.Boolean)
|
||||
extern void GameCenterPlatform_ProgressCallbackWrapper_mE29C6E6CB7F7824621583BA649B226D2D500DE63 (void);
|
||||
// 0x00000056 System.Void UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::ScoreCallbackWrapper(System.Action`1<System.Boolean>,System.Boolean)
|
||||
extern void GameCenterPlatform_ScoreCallbackWrapper_mBC49DCCB37760513FBD1D43A832A3E6A63B56C68 (void);
|
||||
// 0x00000057 System.Void UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::ScoreLoaderCallbackWrapper(System.Action`1<UnityEngine.SocialPlatforms.IScore[]>,UnityEngine.SocialPlatforms.GameCenter.GcScoreData[])
|
||||
extern void GameCenterPlatform_ScoreLoaderCallbackWrapper_mE5C2232C34F35C35B4DCA01EC7B1297546931476 (void);
|
||||
// 0x00000058 System.Void UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::UnityEngine.SocialPlatforms.ISocialPlatform.LoadFriends(UnityEngine.SocialPlatforms.ILocalUser,System.Action`1<System.Boolean>)
|
||||
extern void GameCenterPlatform_UnityEngine_SocialPlatforms_ISocialPlatform_LoadFriends_m2588423AB4981E834EDBF91FAFBC14B34CE5A315 (void);
|
||||
// 0x00000059 System.Void UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::UnityEngine.SocialPlatforms.ISocialPlatform.Authenticate(UnityEngine.SocialPlatforms.ILocalUser,System.Action`1<System.Boolean>)
|
||||
extern void GameCenterPlatform_UnityEngine_SocialPlatforms_ISocialPlatform_Authenticate_mD2BD6C6784B53686B875E94B35538729377EEC0C (void);
|
||||
// 0x0000005A System.Void UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::UnityEngine.SocialPlatforms.ISocialPlatform.Authenticate(UnityEngine.SocialPlatforms.ILocalUser,System.Action`2<System.Boolean,System.String>)
|
||||
extern void GameCenterPlatform_UnityEngine_SocialPlatforms_ISocialPlatform_Authenticate_m00EE28E82D18463D20F3938E89FF9EC634C14E57 (void);
|
||||
// 0x0000005B UnityEngine.SocialPlatforms.ILocalUser UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::get_localUser()
|
||||
extern void GameCenterPlatform_get_localUser_m3EEB7917C0629DBADEE2DCF8E979BBA09A83AF92 (void);
|
||||
// 0x0000005C System.Void UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::PopulateLocalUser()
|
||||
extern void GameCenterPlatform_PopulateLocalUser_m530576FBF88694356BFB3225D489B31DE7AC2239 (void);
|
||||
// 0x0000005D System.Void UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::LoadAchievementDescriptions(System.Action`1<UnityEngine.SocialPlatforms.IAchievementDescription[]>)
|
||||
extern void GameCenterPlatform_LoadAchievementDescriptions_m2ABE78471BB5B0FD49A5E640881F940411EF2E7D (void);
|
||||
// 0x0000005E System.Void UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::ReportProgress(System.String,System.Double,System.Action`1<System.Boolean>)
|
||||
extern void GameCenterPlatform_ReportProgress_m84D8EA9E8FF51493E28468EDB8FB330D112725C7 (void);
|
||||
// 0x0000005F System.Void UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::LoadAchievements(System.Action`1<UnityEngine.SocialPlatforms.IAchievement[]>)
|
||||
extern void GameCenterPlatform_LoadAchievements_m23EED7C060A33D403C9F91F5F95CFA2C12AB90B9 (void);
|
||||
// 0x00000060 System.Void UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::ReportScore(System.Int64,System.String,System.Action`1<System.Boolean>)
|
||||
extern void GameCenterPlatform_ReportScore_mC2F686533059939CF30468D9D46E14C84AABAF2E (void);
|
||||
// 0x00000061 System.Void UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::LoadScores(System.String,System.Action`1<UnityEngine.SocialPlatforms.IScore[]>)
|
||||
extern void GameCenterPlatform_LoadScores_mC159C539D06107214560137F98CB37C14013B48D (void);
|
||||
// 0x00000062 System.Void UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::LoadScores(UnityEngine.SocialPlatforms.ILeaderboard,System.Action`1<System.Boolean>)
|
||||
extern void GameCenterPlatform_LoadScores_m12ED827C5C14AE481BDFB6C12DC973A46CF53056 (void);
|
||||
// 0x00000063 System.Void UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::LeaderboardCallbackWrapper(System.Action`1<System.Boolean>,System.Boolean)
|
||||
extern void GameCenterPlatform_LeaderboardCallbackWrapper_mA79EB4ADBFE7E489A9E21ADAA848CCFE5A9BDD1C (void);
|
||||
// 0x00000064 System.Boolean UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::GetLoading(UnityEngine.SocialPlatforms.ILeaderboard)
|
||||
extern void GameCenterPlatform_GetLoading_m8B553D2C428CCC0172953A741C624A1A5F344617 (void);
|
||||
// 0x00000065 System.Boolean UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::VerifyAuthentication()
|
||||
extern void GameCenterPlatform_VerifyAuthentication_mC223F7D625EB6B61E71D4BE11B43BC9F18D37DE9 (void);
|
||||
// 0x00000066 System.Void UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::ShowAchievementsUI()
|
||||
extern void GameCenterPlatform_ShowAchievementsUI_m0401580BA149B7E30547E7E05DC4644CB7E2DBA6 (void);
|
||||
// 0x00000067 System.Void UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::ShowLeaderboardUI()
|
||||
extern void GameCenterPlatform_ShowLeaderboardUI_m10D84DC004496337D2927EA748EEEE0689FF6284 (void);
|
||||
// 0x00000068 System.Void UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::ClearUsers(System.Int32)
|
||||
extern void GameCenterPlatform_ClearUsers_m992B15D20DF29845B75877B825D09DB5BEF88794 (void);
|
||||
// 0x00000069 System.Void UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::SetUser(UnityEngine.SocialPlatforms.GameCenter.GcUserProfileData,System.Int32)
|
||||
extern void GameCenterPlatform_SetUser_mF0C7848C4575678BCB7E0F9F66AFC06F86ABDE3B (void);
|
||||
// 0x0000006A System.Void UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::SetUserImage(UnityEngine.Texture2D,System.Int32)
|
||||
extern void GameCenterPlatform_SetUserImage_m1DF6E3FDB5A35D7ECA9D3EFE135E6876FA8B65D3 (void);
|
||||
// 0x0000006B System.Void UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::TriggerUsersCallbackWrapper(System.Action`1<UnityEngine.SocialPlatforms.IUserProfile[]>)
|
||||
extern void GameCenterPlatform_TriggerUsersCallbackWrapper_m252F1BF83F20ADAD9F7863AAB7681D2F36A7434A (void);
|
||||
// 0x0000006C System.Void UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::LoadUsers(System.String[],System.Action`1<UnityEngine.SocialPlatforms.IUserProfile[]>)
|
||||
extern void GameCenterPlatform_LoadUsers_m616D01C1A67469537A3F2D02DC934D57CE4B01A2 (void);
|
||||
// 0x0000006D System.Void UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::SafeSetUserImage(UnityEngine.SocialPlatforms.Impl.UserProfile[]&,UnityEngine.Texture2D,System.Int32)
|
||||
extern void GameCenterPlatform_SafeSetUserImage_m5C9205AC773B23BFEA86D8F833811A863620B4A5 (void);
|
||||
// 0x0000006E System.Void UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::SafeClearArray(UnityEngine.SocialPlatforms.Impl.UserProfile[]&,System.Int32)
|
||||
extern void GameCenterPlatform_SafeClearArray_m582138D71F5DF50C5399B2E6F8B3F35B792FBFC9 (void);
|
||||
// 0x0000006F UnityEngine.SocialPlatforms.ILeaderboard UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::CreateLeaderboard()
|
||||
extern void GameCenterPlatform_CreateLeaderboard_m4D487F47156DF1F0EE7DA44946D4ED48936689BB (void);
|
||||
// 0x00000070 UnityEngine.SocialPlatforms.IAchievement UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::CreateAchievement()
|
||||
extern void GameCenterPlatform_CreateAchievement_mD92E4A555CBCE298E00F99220CF3930DE64DE35B (void);
|
||||
// 0x00000071 System.Void UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::TriggerResetAchievementCallback(System.Boolean)
|
||||
extern void GameCenterPlatform_TriggerResetAchievementCallback_mC66B7555E8FE8200A2B85D97A73046FB6B099DE9 (void);
|
||||
// 0x00000072 System.Void UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::Authenticate()
|
||||
extern void GameCenterPlatform_Authenticate_m2C7CD52B1DF5A726431D11F5FDC92A78620E79A1 (void);
|
||||
// 0x00000073 System.Boolean UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::GetAuthenticated()
|
||||
extern void GameCenterPlatform_GetAuthenticated_mE4EC863A99E6238523C599BEC5D9E83ADA3ECD0C (void);
|
||||
// 0x00000074 System.String UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::Internal_UserName()
|
||||
extern void GameCenterPlatform_Internal_UserName_mFF1EA7622768C0AB95C831D920078B0EB305151D (void);
|
||||
// 0x00000075 System.String UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::Internal_UserID()
|
||||
extern void GameCenterPlatform_Internal_UserID_mB9D9BBCC77F8F91EDBCAAED850FF9188F5C08273 (void);
|
||||
// 0x00000076 System.String UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::Internal_UserGameID()
|
||||
extern void GameCenterPlatform_Internal_UserGameID_mDD756F1327B65CCFDDDA6270B9039D7C853B31EA (void);
|
||||
// 0x00000077 System.String UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::Internal_LegacyUserID()
|
||||
extern void GameCenterPlatform_Internal_LegacyUserID_mCA68D0FD9441951433DB2306179CD5181CDA61DD (void);
|
||||
// 0x00000078 System.Boolean UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::GetIsUnderage()
|
||||
extern void GameCenterPlatform_GetIsUnderage_m079167A5B106AFA57D0CAB20D00E16D1CD5DEE2B (void);
|
||||
// 0x00000079 UnityEngine.Texture2D UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::GetUserImage()
|
||||
extern void GameCenterPlatform_GetUserImage_m0CBDA5D68C7A7A4BEC13EBE77479FC9DA52166AB (void);
|
||||
// 0x0000007A System.Void UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::LoadFriends(System.Object)
|
||||
extern void GameCenterPlatform_LoadFriends_m4FE323D2E3AD644E3984E2EE623388D96EEDDA0A (void);
|
||||
// 0x0000007B System.Void UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::InternalLoadAchievementDescriptions(System.Object)
|
||||
extern void GameCenterPlatform_InternalLoadAchievementDescriptions_mB95C4646875A32D657F0CDED7BC27CEE699E773E (void);
|
||||
// 0x0000007C System.Void UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::InternalLoadAchievements(System.Object)
|
||||
extern void GameCenterPlatform_InternalLoadAchievements_m2E861B69D07FFF5AF3812FC5500A111C71818963 (void);
|
||||
// 0x0000007D System.Void UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::InternalReportProgress(System.String,System.Double,System.Object)
|
||||
extern void GameCenterPlatform_InternalReportProgress_m4A9784CD054C3339C8DBC4F5E99D817C69A33ABC (void);
|
||||
// 0x0000007E System.Void UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::InternalReportScore(System.Int64,System.String,System.Object)
|
||||
extern void GameCenterPlatform_InternalReportScore_m61071235860F32C299F6475A70BBFA0D6542A490 (void);
|
||||
// 0x0000007F System.Void UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::InternalLoadScores(System.String,System.Object)
|
||||
extern void GameCenterPlatform_InternalLoadScores_mC0B34238A956FC1875EE034365A82C7DA2CA3C8D (void);
|
||||
// 0x00000080 System.Void UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::Internal_ShowAchievementsUI()
|
||||
extern void GameCenterPlatform_Internal_ShowAchievementsUI_m1AC768F918D4A93F7350EBF1F89FC81C4DDC7369 (void);
|
||||
// 0x00000081 System.Void UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::Internal_ShowLeaderboardUI()
|
||||
extern void GameCenterPlatform_Internal_ShowLeaderboardUI_m1D84677B42CDB5A14134B65CA51727B38BAB5D98 (void);
|
||||
// 0x00000082 System.Void UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::Internal_LoadUsers(System.String[],System.Object)
|
||||
extern void GameCenterPlatform_Internal_LoadUsers_mE09B0D2E48ABFBA3C24FC8047CBD8C3CC189CA6A (void);
|
||||
// 0x00000083 System.Void UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::ResetAllAchievements()
|
||||
extern void GameCenterPlatform_ResetAllAchievements_m85F77F26AAA1450BCEC43692DF91E5E64D31A4C0 (void);
|
||||
// 0x00000084 System.Void UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::ShowDefaultAchievementBanner(System.Boolean)
|
||||
extern void GameCenterPlatform_ShowDefaultAchievementBanner_m3BF0634CFE7F665A87284BBE9EB81DC579D82EE1 (void);
|
||||
// 0x00000085 System.Void UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::ResetAllAchievements(System.Action`1<System.Boolean>)
|
||||
extern void GameCenterPlatform_ResetAllAchievements_mA20580F1523218065AA490BD84E9D91C6A041B9C (void);
|
||||
// 0x00000086 System.Void UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::ShowDefaultAchievementCompletionBanner(System.Boolean)
|
||||
extern void GameCenterPlatform_ShowDefaultAchievementCompletionBanner_m16F5C6260F8AC72F9020BC896B787479CA19F953 (void);
|
||||
// 0x00000087 System.Void UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::ShowLeaderboardUI(System.String,UnityEngine.SocialPlatforms.TimeScope)
|
||||
extern void GameCenterPlatform_ShowLeaderboardUI_mF61D3E7F3BDC7E62607591BE7E0896C9508CA965 (void);
|
||||
// 0x00000088 System.Void UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::ShowSpecificLeaderboardUI(System.String,System.Int32)
|
||||
extern void GameCenterPlatform_ShowSpecificLeaderboardUI_m86884D45010C205C96BADD5E60569FC7B1F7B0CF (void);
|
||||
// 0x00000089 System.Void UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::.ctor()
|
||||
extern void GameCenterPlatform__ctor_m341814BE3C4AC9683D3C828F744775C56E3B37A8 (void);
|
||||
// 0x0000008A System.Void UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform::.cctor()
|
||||
extern void GameCenterPlatform__cctor_mD36CEF8F96BDB310761AE35ECC8DECB6C9BB5195 (void);
|
||||
// 0x0000008B System.Void UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform/<>c__DisplayClass21_0::.ctor()
|
||||
extern void U3CU3Ec__DisplayClass21_0__ctor_m88E5FDE6B93424368864BF746056A7FC84B7D830 (void);
|
||||
// 0x0000008C System.Void UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform/<>c__DisplayClass21_0::<UnityEngine.SocialPlatforms.ISocialPlatform.Authenticate>b__0(System.Boolean,System.String)
|
||||
extern void U3CU3Ec__DisplayClass21_0_U3CUnityEngine_SocialPlatforms_ISocialPlatform_AuthenticateU3Eb__0_m9AE0F3B20150C0C9F14CCAEF54A67A6E8F47E04A (void);
|
||||
// 0x0000008D System.Void UnityEngine.SocialPlatforms.GameCenter.GcLeaderboard::.ctor(UnityEngine.SocialPlatforms.Impl.Leaderboard)
|
||||
extern void GcLeaderboard__ctor_mE6ABD1A5D616A3371023FB53BAAA34C638081632 (void);
|
||||
// 0x0000008E System.Void UnityEngine.SocialPlatforms.GameCenter.GcLeaderboard::Finalize()
|
||||
extern void GcLeaderboard_Finalize_mFB136BB37E37121BCC3288CED360961840FC4663 (void);
|
||||
// 0x0000008F System.Boolean UnityEngine.SocialPlatforms.GameCenter.GcLeaderboard::Contains(UnityEngine.SocialPlatforms.Impl.Leaderboard)
|
||||
extern void GcLeaderboard_Contains_m08D3F5665F1A25DBDC41B9D98461D5DBB98DCD48 (void);
|
||||
// 0x00000090 System.Void UnityEngine.SocialPlatforms.GameCenter.GcLeaderboard::SetScores(UnityEngine.SocialPlatforms.GameCenter.GcScoreData[])
|
||||
extern void GcLeaderboard_SetScores_mEBD889F27BCC226B108D4BB5DD6E24C3BF893F24 (void);
|
||||
// 0x00000091 System.Void UnityEngine.SocialPlatforms.GameCenter.GcLeaderboard::SetLocalScore(UnityEngine.SocialPlatforms.GameCenter.GcScoreData)
|
||||
extern void GcLeaderboard_SetLocalScore_mE4B7C301194F99B8CE19D4514825303AAEA54CDB (void);
|
||||
// 0x00000092 System.Void UnityEngine.SocialPlatforms.GameCenter.GcLeaderboard::SetMaxRange(System.UInt32)
|
||||
extern void GcLeaderboard_SetMaxRange_m387A4CB1A33D2B3C4A5ED16B8877F00D0AA44B80 (void);
|
||||
// 0x00000093 System.Void UnityEngine.SocialPlatforms.GameCenter.GcLeaderboard::SetTitle(System.String)
|
||||
extern void GcLeaderboard_SetTitle_m979181BD4D8E63155ECB306F3E9FE90CE0973208 (void);
|
||||
// 0x00000094 System.Void UnityEngine.SocialPlatforms.GameCenter.GcLeaderboard::Internal_LoadScores(System.String,System.Int32,System.Int32,System.String[],System.Int32,System.Int32,System.Object)
|
||||
extern void GcLeaderboard_Internal_LoadScores_m94273C598B909F6E518E4C6A0A1EEFA83BD2ECAD (void);
|
||||
// 0x00000095 System.IntPtr UnityEngine.SocialPlatforms.GameCenter.GcLeaderboard::GcLeaderboard_LoadScores(System.Object,System.String,System.Int32,System.Int32,System.String[],System.Int32,System.Int32,System.Object)
|
||||
extern void GcLeaderboard_GcLeaderboard_LoadScores_m972EA4A7913D14B3C0D9C57F89B1330A9E21EE9E (void);
|
||||
// 0x00000096 System.Boolean UnityEngine.SocialPlatforms.GameCenter.GcLeaderboard::Loading()
|
||||
extern void GcLeaderboard_Loading_m089B19A42B7EA2AB31481F2CA81E47279ABF0E75 (void);
|
||||
// 0x00000097 System.Boolean UnityEngine.SocialPlatforms.GameCenter.GcLeaderboard::GcLeaderboard_Loading(System.IntPtr)
|
||||
extern void GcLeaderboard_GcLeaderboard_Loading_m15F693AAA3921AC60FA7F5B8EB0EBD7C372BFF73 (void);
|
||||
// 0x00000098 System.Void UnityEngine.SocialPlatforms.GameCenter.GcLeaderboard::Dispose()
|
||||
extern void GcLeaderboard_Dispose_m115757D5DFB8FFE4CD11F2D20244965F992A950C (void);
|
||||
// 0x00000099 System.Void UnityEngine.SocialPlatforms.GameCenter.GcLeaderboard::GcLeaderboard_Dispose(System.IntPtr)
|
||||
extern void GcLeaderboard_GcLeaderboard_Dispose_m3C583A1922AE26F38C5228FF13AC66824A67E5D0 (void);
|
||||
static Il2CppMethodPointer s_methodPointers[153] =
|
||||
{
|
||||
NULL,
|
||||
NULL,
|
||||
NULL,
|
||||
NULL,
|
||||
Range__ctor_m54D7381A4A3634B7B0AF0847B848EBB8786B876B,
|
||||
NULL,
|
||||
NULL,
|
||||
NULL,
|
||||
NULL,
|
||||
LocalUser__ctor_m6D2AE6DFC61CEC39842944D970E2B2B5547CBE97,
|
||||
LocalUser_SetFriends_m369BCB8021FB5A359B11D2ACB2F1CCD3DFBF0F6B,
|
||||
LocalUser_SetAuthenticated_m1A7992E986F32450A1A97409AF772DC3A0F47E44,
|
||||
LocalUser_SetUnderage_m84D3621386D7E917F7D4AD7D2C00DE8CA8AD278C,
|
||||
LocalUser_get_authenticated_m3121DA81FF48CFFB4024ADECEE98F8E686497C54,
|
||||
UserProfile__ctor_m12A26F8BDE41F4B55A645BB1D4038E81A877E680,
|
||||
UserProfile__ctor_m3649D0E00F816E2712CA936DDBC55ADBC336BBF1,
|
||||
UserProfile_ToString_mEB091241EC114F4F42D2CE15F127B83556EBE45D,
|
||||
UserProfile_SetUserName_m107512A03197354BAF98514ED92D647F4FC778DA,
|
||||
UserProfile_SetUserID_m32F417A48D4FDC4ED180EA2AD92F875996DA3353,
|
||||
UserProfile_SetLegacyUserID_m3A0B0F4DD6782D40B5CF6D575B670EC96396F030,
|
||||
UserProfile_SetUserGameID_m9A90E716F9DB8138181F748243D7BB12BCCAA2D5,
|
||||
UserProfile_SetImage_mEBC25331E4B4E201DB02A0442C473829E07D6221,
|
||||
UserProfile_get_userName_mDAAF12B06B939DDAAB6F10E8CB40B21C48A94F30,
|
||||
UserProfile_get_id_m16A4060A0C7E4480F68D6915E6FAB15EAE973336,
|
||||
UserProfile_get_isFriend_m353D113C22BFA80F0E9A1DBEC40E4EF4984AC4EC,
|
||||
UserProfile_get_state_mF5F8CF4E71CD46ADBCC58E5A3AFA715B3E5F9D4A,
|
||||
Achievement__ctor_mE4B26ACD8E4220F645864036B7F9AD2E7D746B85,
|
||||
Achievement__ctor_m18A74E7A97AEBD079DA90A210C02C6CE47B44FFC,
|
||||
Achievement__ctor_m9EA819E3F3EA4B91F8998D54EF2F5B2B1E29976F,
|
||||
Achievement_ToString_m15B103F95C549FCED0D581FBACD73E47310C9EAC,
|
||||
Achievement_get_id_m0BDCED7ECE8BA170E619212CB2D23BD28322A0A6,
|
||||
Achievement_set_id_mF2FB90F3D2F1F38DBDB449C956B8B35BAF6108EE,
|
||||
Achievement_get_percentCompleted_mC0BFB768F39C110F2A851B5089C300E1C879D860,
|
||||
Achievement_set_percentCompleted_mFB33E191E8D7557E178EEC6DB80B616C268824BD,
|
||||
Achievement_get_completed_m5A625BD69E129E468D83A98CF4CAA4AA28E0B2BF,
|
||||
Achievement_get_hidden_m343030FB2BE6636313A09DEDCB02BE0ADB5E3A8E,
|
||||
Achievement_get_lastReportedDate_mEACB3BADB0996AF967B26378FA48BC964E68F091,
|
||||
AchievementDescription__ctor_mB5F9A234974FEC3BB146511929791A1D8846E2EF,
|
||||
AchievementDescription_ToString_m25F3CC08322EAB311EDBC23D85F067387706DE02,
|
||||
AchievementDescription_SetImage_m16FC76EE05781DB25586A64D3B0D6CE3E6213CF5,
|
||||
AchievementDescription_get_id_mC954988F8344E3B7E316D15EBD240A85D06A77C7,
|
||||
AchievementDescription_set_id_m48924C51CD1E02F0416AC540DC2214E4D64AF411,
|
||||
AchievementDescription_get_title_m196C3AEC0457C25D95B16309E12AB246D054CB67,
|
||||
AchievementDescription_get_achievedDescription_m4EB337E95791A795A79F2C75F909E64747B682B5,
|
||||
AchievementDescription_get_unachievedDescription_mE98806AB14F770F2A9CBA7E1024052FA259D43E5,
|
||||
AchievementDescription_get_hidden_mA35899496122E49F7333BB5F5B5B6AE0E68F017E,
|
||||
AchievementDescription_get_points_m222DBD457CA6F5629758C211668917507B316DB3,
|
||||
Score__ctor_mCA767E4E990F5CB9657921695D4983D721BEA751,
|
||||
Score__ctor_mD90E3983F2E8AF6001AB7C5E54497752F21E0F31,
|
||||
Score_ToString_m497A4E6B7AA8D2B8433137127949781736A16037,
|
||||
Score_get_leaderboardID_m46C97C5AFC37C00BFBEE51457BD6149B874E114A,
|
||||
Score_set_leaderboardID_m6F297139EFA0D2AA106B58FA267AFF7A147A85DB,
|
||||
Score_get_value_m2978563520D7392815E60349F89A5A1B5516DE5E,
|
||||
Score_set_value_m7332E2AAE1792ECEA5016FA51F4E4403CDA120C3,
|
||||
Leaderboard__ctor_mFB0608CFF4A090982904F495B84A91DC0FAC5B73,
|
||||
Leaderboard_ToString_m13D23F36219548442D56D029B561F628305F3500,
|
||||
Leaderboard_SetLocalUserScore_m424D44D0AFCBA825FA9604E8BBB538854E1E0C4E,
|
||||
Leaderboard_SetMaxRange_m1C820B01C8989228954B466EDC4C1B8DC95EDE5B,
|
||||
Leaderboard_SetScores_m0ACEEFFAD67AE7F7DC644DD034F5F2C431265943,
|
||||
Leaderboard_SetTitle_mF9ECC4ECBF137AF4C5AD6A2338AB8786D86EADF2,
|
||||
Leaderboard_GetUserFilter_m859FFF97FCAF7D42B215AA0166FCB6B8B0025FF3,
|
||||
Leaderboard_get_id_mA5577E5D07BEE409EF2CDE6177AEB90547554770,
|
||||
Leaderboard_set_id_m384FB70C2196021186F68CDCB7EA91DF88129719,
|
||||
Leaderboard_get_userScope_m84E19D835910E26104D25567BA0B1C6A518FC5C1,
|
||||
Leaderboard_set_userScope_m43E61AEA535770AB7D3A6E67B72917D954CB048A,
|
||||
Leaderboard_get_range_m98008ADA839E76C8D69D152F7FC6EDBF2F6985DB,
|
||||
Leaderboard_set_range_mD56709B5A37AEEB0BA5D6702261CA840891849EA,
|
||||
Leaderboard_get_timeScope_mB7893524B11F9CF2C739B269C6CA34F19B1FC95E,
|
||||
Leaderboard_set_timeScope_m3248C6661CA59EDF283927C63D9030FD1763E3EE,
|
||||
GcUserProfileData_ToUserProfile_m887526D751D39B2B34AA0BE6C79509C2A50BEFF0,
|
||||
GcUserProfileData_AddToArray_m9CC6C97BD081C9EC250AAA5E9BDCD398AF724BFB,
|
||||
GcAchievementDescriptionData_ToAchievementDescription_mA95A2FA7D828072E68C98ADBED56D66FAA59AEA3,
|
||||
GcAchievementData_ToAchievement_mCE88D5DB0AD1F428DFA7C6B6288F1EAC1B4382C4,
|
||||
GcScoreData_ToScore_m14704CC9F232CE249D9C85D2E8D330ADBE1C459E,
|
||||
GameCenterPlatform_ClearAchievementDescriptions_mFC0180DC036AEC26DE512750183DBF28716D1AD8,
|
||||
GameCenterPlatform_SetAchievementDescription_mAF211CCF334C2D12447A979CF93BEC1DC46228DD,
|
||||
GameCenterPlatform_SetAchievementDescriptionImage_mC749EF8DFCF2B3A7D1AE589DD00A75425768C7BA,
|
||||
GameCenterPlatform_TriggerAchievementDescriptionCallback_m0F1810085F7010D4375CCAFA088B733436888DEA,
|
||||
GameCenterPlatform_AuthenticateCallbackWrapper_mBBDEF86CA2DA410C1ABD8DFBDEEA558F53D11E57,
|
||||
GameCenterPlatform_ClearFriends_m45B4C09623AE8DB864C43A54A36A745CD96962F6,
|
||||
GameCenterPlatform_SetFriends_mC9766A473E039C70D2578FCDA79A1A40A68B2946,
|
||||
GameCenterPlatform_SetFriendImage_m9E454400B1CDAEDC2096043B6901DB41879693DE,
|
||||
GameCenterPlatform_TriggerFriendsCallbackWrapper_m0A2B35B02A9548A7B6F4B48D8CC93327F6D2C941,
|
||||
GameCenterPlatform_AchievementCallbackWrapper_m5F495D50FF3F29F655280DB50B653BA1B1F8E87A,
|
||||
GameCenterPlatform_ProgressCallbackWrapper_mE29C6E6CB7F7824621583BA649B226D2D500DE63,
|
||||
GameCenterPlatform_ScoreCallbackWrapper_mBC49DCCB37760513FBD1D43A832A3E6A63B56C68,
|
||||
GameCenterPlatform_ScoreLoaderCallbackWrapper_mE5C2232C34F35C35B4DCA01EC7B1297546931476,
|
||||
GameCenterPlatform_UnityEngine_SocialPlatforms_ISocialPlatform_LoadFriends_m2588423AB4981E834EDBF91FAFBC14B34CE5A315,
|
||||
GameCenterPlatform_UnityEngine_SocialPlatforms_ISocialPlatform_Authenticate_mD2BD6C6784B53686B875E94B35538729377EEC0C,
|
||||
GameCenterPlatform_UnityEngine_SocialPlatforms_ISocialPlatform_Authenticate_m00EE28E82D18463D20F3938E89FF9EC634C14E57,
|
||||
GameCenterPlatform_get_localUser_m3EEB7917C0629DBADEE2DCF8E979BBA09A83AF92,
|
||||
GameCenterPlatform_PopulateLocalUser_m530576FBF88694356BFB3225D489B31DE7AC2239,
|
||||
GameCenterPlatform_LoadAchievementDescriptions_m2ABE78471BB5B0FD49A5E640881F940411EF2E7D,
|
||||
GameCenterPlatform_ReportProgress_m84D8EA9E8FF51493E28468EDB8FB330D112725C7,
|
||||
GameCenterPlatform_LoadAchievements_m23EED7C060A33D403C9F91F5F95CFA2C12AB90B9,
|
||||
GameCenterPlatform_ReportScore_mC2F686533059939CF30468D9D46E14C84AABAF2E,
|
||||
GameCenterPlatform_LoadScores_mC159C539D06107214560137F98CB37C14013B48D,
|
||||
GameCenterPlatform_LoadScores_m12ED827C5C14AE481BDFB6C12DC973A46CF53056,
|
||||
GameCenterPlatform_LeaderboardCallbackWrapper_mA79EB4ADBFE7E489A9E21ADAA848CCFE5A9BDD1C,
|
||||
GameCenterPlatform_GetLoading_m8B553D2C428CCC0172953A741C624A1A5F344617,
|
||||
GameCenterPlatform_VerifyAuthentication_mC223F7D625EB6B61E71D4BE11B43BC9F18D37DE9,
|
||||
GameCenterPlatform_ShowAchievementsUI_m0401580BA149B7E30547E7E05DC4644CB7E2DBA6,
|
||||
GameCenterPlatform_ShowLeaderboardUI_m10D84DC004496337D2927EA748EEEE0689FF6284,
|
||||
GameCenterPlatform_ClearUsers_m992B15D20DF29845B75877B825D09DB5BEF88794,
|
||||
GameCenterPlatform_SetUser_mF0C7848C4575678BCB7E0F9F66AFC06F86ABDE3B,
|
||||
GameCenterPlatform_SetUserImage_m1DF6E3FDB5A35D7ECA9D3EFE135E6876FA8B65D3,
|
||||
GameCenterPlatform_TriggerUsersCallbackWrapper_m252F1BF83F20ADAD9F7863AAB7681D2F36A7434A,
|
||||
GameCenterPlatform_LoadUsers_m616D01C1A67469537A3F2D02DC934D57CE4B01A2,
|
||||
GameCenterPlatform_SafeSetUserImage_m5C9205AC773B23BFEA86D8F833811A863620B4A5,
|
||||
GameCenterPlatform_SafeClearArray_m582138D71F5DF50C5399B2E6F8B3F35B792FBFC9,
|
||||
GameCenterPlatform_CreateLeaderboard_m4D487F47156DF1F0EE7DA44946D4ED48936689BB,
|
||||
GameCenterPlatform_CreateAchievement_mD92E4A555CBCE298E00F99220CF3930DE64DE35B,
|
||||
GameCenterPlatform_TriggerResetAchievementCallback_mC66B7555E8FE8200A2B85D97A73046FB6B099DE9,
|
||||
GameCenterPlatform_Authenticate_m2C7CD52B1DF5A726431D11F5FDC92A78620E79A1,
|
||||
GameCenterPlatform_GetAuthenticated_mE4EC863A99E6238523C599BEC5D9E83ADA3ECD0C,
|
||||
GameCenterPlatform_Internal_UserName_mFF1EA7622768C0AB95C831D920078B0EB305151D,
|
||||
GameCenterPlatform_Internal_UserID_mB9D9BBCC77F8F91EDBCAAED850FF9188F5C08273,
|
||||
GameCenterPlatform_Internal_UserGameID_mDD756F1327B65CCFDDDA6270B9039D7C853B31EA,
|
||||
GameCenterPlatform_Internal_LegacyUserID_mCA68D0FD9441951433DB2306179CD5181CDA61DD,
|
||||
GameCenterPlatform_GetIsUnderage_m079167A5B106AFA57D0CAB20D00E16D1CD5DEE2B,
|
||||
GameCenterPlatform_GetUserImage_m0CBDA5D68C7A7A4BEC13EBE77479FC9DA52166AB,
|
||||
GameCenterPlatform_LoadFriends_m4FE323D2E3AD644E3984E2EE623388D96EEDDA0A,
|
||||
GameCenterPlatform_InternalLoadAchievementDescriptions_mB95C4646875A32D657F0CDED7BC27CEE699E773E,
|
||||
GameCenterPlatform_InternalLoadAchievements_m2E861B69D07FFF5AF3812FC5500A111C71818963,
|
||||
GameCenterPlatform_InternalReportProgress_m4A9784CD054C3339C8DBC4F5E99D817C69A33ABC,
|
||||
GameCenterPlatform_InternalReportScore_m61071235860F32C299F6475A70BBFA0D6542A490,
|
||||
GameCenterPlatform_InternalLoadScores_mC0B34238A956FC1875EE034365A82C7DA2CA3C8D,
|
||||
GameCenterPlatform_Internal_ShowAchievementsUI_m1AC768F918D4A93F7350EBF1F89FC81C4DDC7369,
|
||||
GameCenterPlatform_Internal_ShowLeaderboardUI_m1D84677B42CDB5A14134B65CA51727B38BAB5D98,
|
||||
GameCenterPlatform_Internal_LoadUsers_mE09B0D2E48ABFBA3C24FC8047CBD8C3CC189CA6A,
|
||||
GameCenterPlatform_ResetAllAchievements_m85F77F26AAA1450BCEC43692DF91E5E64D31A4C0,
|
||||
GameCenterPlatform_ShowDefaultAchievementBanner_m3BF0634CFE7F665A87284BBE9EB81DC579D82EE1,
|
||||
GameCenterPlatform_ResetAllAchievements_mA20580F1523218065AA490BD84E9D91C6A041B9C,
|
||||
GameCenterPlatform_ShowDefaultAchievementCompletionBanner_m16F5C6260F8AC72F9020BC896B787479CA19F953,
|
||||
GameCenterPlatform_ShowLeaderboardUI_mF61D3E7F3BDC7E62607591BE7E0896C9508CA965,
|
||||
GameCenterPlatform_ShowSpecificLeaderboardUI_m86884D45010C205C96BADD5E60569FC7B1F7B0CF,
|
||||
GameCenterPlatform__ctor_m341814BE3C4AC9683D3C828F744775C56E3B37A8,
|
||||
GameCenterPlatform__cctor_mD36CEF8F96BDB310761AE35ECC8DECB6C9BB5195,
|
||||
U3CU3Ec__DisplayClass21_0__ctor_m88E5FDE6B93424368864BF746056A7FC84B7D830,
|
||||
U3CU3Ec__DisplayClass21_0_U3CUnityEngine_SocialPlatforms_ISocialPlatform_AuthenticateU3Eb__0_m9AE0F3B20150C0C9F14CCAEF54A67A6E8F47E04A,
|
||||
GcLeaderboard__ctor_mE6ABD1A5D616A3371023FB53BAAA34C638081632,
|
||||
GcLeaderboard_Finalize_mFB136BB37E37121BCC3288CED360961840FC4663,
|
||||
GcLeaderboard_Contains_m08D3F5665F1A25DBDC41B9D98461D5DBB98DCD48,
|
||||
GcLeaderboard_SetScores_mEBD889F27BCC226B108D4BB5DD6E24C3BF893F24,
|
||||
GcLeaderboard_SetLocalScore_mE4B7C301194F99B8CE19D4514825303AAEA54CDB,
|
||||
GcLeaderboard_SetMaxRange_m387A4CB1A33D2B3C4A5ED16B8877F00D0AA44B80,
|
||||
GcLeaderboard_SetTitle_m979181BD4D8E63155ECB306F3E9FE90CE0973208,
|
||||
GcLeaderboard_Internal_LoadScores_m94273C598B909F6E518E4C6A0A1EEFA83BD2ECAD,
|
||||
GcLeaderboard_GcLeaderboard_LoadScores_m972EA4A7913D14B3C0D9C57F89B1330A9E21EE9E,
|
||||
GcLeaderboard_Loading_m089B19A42B7EA2AB31481F2CA81E47279ABF0E75,
|
||||
GcLeaderboard_GcLeaderboard_Loading_m15F693AAA3921AC60FA7F5B8EB0EBD7C372BFF73,
|
||||
GcLeaderboard_Dispose_m115757D5DFB8FFE4CD11F2D20244965F992A950C,
|
||||
GcLeaderboard_GcLeaderboard_Dispose_m3C583A1922AE26F38C5228FF13AC66824A67E5D0,
|
||||
};
|
||||
extern void Range__ctor_m54D7381A4A3634B7B0AF0847B848EBB8786B876B_AdjustorThunk (void);
|
||||
extern void GcUserProfileData_ToUserProfile_m887526D751D39B2B34AA0BE6C79509C2A50BEFF0_AdjustorThunk (void);
|
||||
extern void GcUserProfileData_AddToArray_m9CC6C97BD081C9EC250AAA5E9BDCD398AF724BFB_AdjustorThunk (void);
|
||||
extern void GcAchievementDescriptionData_ToAchievementDescription_mA95A2FA7D828072E68C98ADBED56D66FAA59AEA3_AdjustorThunk (void);
|
||||
extern void GcAchievementData_ToAchievement_mCE88D5DB0AD1F428DFA7C6B6288F1EAC1B4382C4_AdjustorThunk (void);
|
||||
extern void GcScoreData_ToScore_m14704CC9F232CE249D9C85D2E8D330ADBE1C459E_AdjustorThunk (void);
|
||||
static Il2CppTokenAdjustorThunkPair s_adjustorThunks[6] =
|
||||
{
|
||||
{ 0x06000005, Range__ctor_m54D7381A4A3634B7B0AF0847B848EBB8786B876B_AdjustorThunk },
|
||||
{ 0x06000046, GcUserProfileData_ToUserProfile_m887526D751D39B2B34AA0BE6C79509C2A50BEFF0_AdjustorThunk },
|
||||
{ 0x06000047, GcUserProfileData_AddToArray_m9CC6C97BD081C9EC250AAA5E9BDCD398AF724BFB_AdjustorThunk },
|
||||
{ 0x06000048, GcAchievementDescriptionData_ToAchievementDescription_mA95A2FA7D828072E68C98ADBED56D66FAA59AEA3_AdjustorThunk },
|
||||
{ 0x06000049, GcAchievementData_ToAchievement_mCE88D5DB0AD1F428DFA7C6B6288F1EAC1B4382C4_AdjustorThunk },
|
||||
{ 0x0600004A, GcScoreData_ToScore_m14704CC9F232CE249D9C85D2E8D330ADBE1C459E_AdjustorThunk },
|
||||
};
|
||||
static const int32_t s_InvokerIndices[153] =
|
||||
{
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1420,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
3395,
|
||||
2760,
|
||||
2701,
|
||||
2701,
|
||||
3250,
|
||||
3395,
|
||||
162,
|
||||
3311,
|
||||
2760,
|
||||
2760,
|
||||
2760,
|
||||
2760,
|
||||
2760,
|
||||
3311,
|
||||
3311,
|
||||
3250,
|
||||
3292,
|
||||
280,
|
||||
1552,
|
||||
3395,
|
||||
3311,
|
||||
3311,
|
||||
2760,
|
||||
3267,
|
||||
2721,
|
||||
3250,
|
||||
3250,
|
||||
3262,
|
||||
99,
|
||||
3311,
|
||||
2760,
|
||||
3311,
|
||||
2760,
|
||||
3311,
|
||||
3311,
|
||||
3311,
|
||||
3250,
|
||||
3292,
|
||||
1555,
|
||||
157,
|
||||
3311,
|
||||
3311,
|
||||
2760,
|
||||
3293,
|
||||
2744,
|
||||
3395,
|
||||
3311,
|
||||
2760,
|
||||
2822,
|
||||
2760,
|
||||
2760,
|
||||
3311,
|
||||
3311,
|
||||
2760,
|
||||
3292,
|
||||
2743,
|
||||
3323,
|
||||
2772,
|
||||
3292,
|
||||
2743,
|
||||
3311,
|
||||
1271,
|
||||
3311,
|
||||
3311,
|
||||
3311,
|
||||
5111,
|
||||
4703,
|
||||
4738,
|
||||
5115,
|
||||
4708,
|
||||
5111,
|
||||
4704,
|
||||
4738,
|
||||
4738,
|
||||
4741,
|
||||
4736,
|
||||
4736,
|
||||
4741,
|
||||
1558,
|
||||
1558,
|
||||
1558,
|
||||
3311,
|
||||
5220,
|
||||
2760,
|
||||
824,
|
||||
2760,
|
||||
813,
|
||||
1558,
|
||||
1558,
|
||||
4736,
|
||||
1970,
|
||||
3250,
|
||||
3395,
|
||||
3395,
|
||||
5111,
|
||||
4704,
|
||||
4738,
|
||||
5115,
|
||||
1558,
|
||||
4305,
|
||||
4693,
|
||||
3311,
|
||||
3311,
|
||||
5108,
|
||||
5220,
|
||||
5176,
|
||||
5196,
|
||||
5196,
|
||||
5196,
|
||||
5196,
|
||||
5176,
|
||||
5196,
|
||||
5115,
|
||||
5115,
|
||||
5115,
|
||||
4332,
|
||||
4321,
|
||||
4741,
|
||||
5220,
|
||||
5220,
|
||||
4741,
|
||||
5220,
|
||||
5108,
|
||||
5115,
|
||||
5108,
|
||||
4738,
|
||||
4738,
|
||||
3395,
|
||||
5220,
|
||||
3395,
|
||||
1282,
|
||||
2760,
|
||||
3395,
|
||||
1970,
|
||||
2760,
|
||||
2735,
|
||||
2822,
|
||||
2760,
|
||||
88,
|
||||
3493,
|
||||
3250,
|
||||
4843,
|
||||
3395,
|
||||
5113,
|
||||
};
|
||||
IL2CPP_EXTERN_C const Il2CppCodeGenModule g_UnityEngine_GameCenterModule_CodeGenModule;
|
||||
const Il2CppCodeGenModule g_UnityEngine_GameCenterModule_CodeGenModule =
|
||||
{
|
||||
"UnityEngine.GameCenterModule.dll",
|
||||
153,
|
||||
s_methodPointers,
|
||||
6,
|
||||
s_adjustorThunks,
|
||||
s_InvokerIndices,
|
||||
0,
|
||||
NULL,
|
||||
0,
|
||||
NULL,
|
||||
0,
|
||||
NULL,
|
||||
NULL,
|
||||
NULL, // module initializer,
|
||||
NULL,
|
||||
NULL,
|
||||
NULL,
|
||||
};
|
||||
@@ -0,0 +1,113 @@
|
||||
#include "pch-cpp.hpp"
|
||||
|
||||
#ifndef _MSC_VER
|
||||
# include <alloca.h>
|
||||
#else
|
||||
# include <malloc.h>
|
||||
#endif
|
||||
|
||||
|
||||
#include <limits>
|
||||
|
||||
|
||||
|
||||
// System.Void
|
||||
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915;
|
||||
|
||||
|
||||
|
||||
IL2CPP_EXTERN_C_BEGIN
|
||||
IL2CPP_EXTERN_C_END
|
||||
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic push
|
||||
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
||||
#pragma clang diagnostic ignored "-Wunused-variable"
|
||||
#endif
|
||||
|
||||
// <Module>
|
||||
struct U3CModuleU3E_t2C7BF608494A5C8FB8C8C4D318FB27BCF6CE322A
|
||||
{
|
||||
};
|
||||
|
||||
// System.ValueType
|
||||
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F : public RuntimeObject
|
||||
{
|
||||
};
|
||||
// Native definition for P/Invoke marshalling of System.ValueType
|
||||
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_pinvoke
|
||||
{
|
||||
};
|
||||
// Native definition for COM marshalling of System.ValueType
|
||||
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_com
|
||||
{
|
||||
};
|
||||
|
||||
// System.IntPtr
|
||||
struct IntPtr_t
|
||||
{
|
||||
// System.Void* System.IntPtr::m_value
|
||||
void* ___m_value_0;
|
||||
};
|
||||
|
||||
// UnityEngine.Object
|
||||
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C : public RuntimeObject
|
||||
{
|
||||
// System.IntPtr UnityEngine.Object::m_CachedPtr
|
||||
intptr_t ___m_CachedPtr_0;
|
||||
};
|
||||
// Native definition for P/Invoke marshalling of UnityEngine.Object
|
||||
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_pinvoke
|
||||
{
|
||||
intptr_t ___m_CachedPtr_0;
|
||||
};
|
||||
// Native definition for COM marshalling of UnityEngine.Object
|
||||
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_com
|
||||
{
|
||||
intptr_t ___m_CachedPtr_0;
|
||||
};
|
||||
|
||||
// UnityEngine.Component
|
||||
struct Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3 : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
|
||||
{
|
||||
};
|
||||
|
||||
// UnityEngine.Behaviour
|
||||
struct Behaviour_t01970CFBBA658497AE30F311C447DB0440BAB7FA : public Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3
|
||||
{
|
||||
};
|
||||
|
||||
// UnityEngine.GridLayout
|
||||
struct GridLayout_tAD661B1E1E57C16BE21C8C13432EA04FE1F0418B : public Behaviour_t01970CFBBA658497AE30F311C447DB0440BAB7FA
|
||||
{
|
||||
};
|
||||
|
||||
// <Module>
|
||||
|
||||
// <Module>
|
||||
|
||||
// UnityEngine.GridLayout
|
||||
|
||||
// UnityEngine.GridLayout
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic pop
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic push
|
||||
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
||||
#pragma clang diagnostic ignored "-Wunused-variable"
|
||||
#endif
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic pop
|
||||
#endif
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic push
|
||||
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
||||
#pragma clang diagnostic ignored "-Wunused-variable"
|
||||
#endif
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic pop
|
||||
#endif
|
||||
@@ -0,0 +1,35 @@
|
||||
#include "pch-c.h"
|
||||
#ifndef _MSC_VER
|
||||
# include <alloca.h>
|
||||
#else
|
||||
# include <malloc.h>
|
||||
#endif
|
||||
|
||||
|
||||
#include "codegen/il2cpp-codegen-metadata.h"
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
IL2CPP_EXTERN_C const Il2CppCodeGenModule g_UnityEngine_GridModule_CodeGenModule;
|
||||
const Il2CppCodeGenModule g_UnityEngine_GridModule_CodeGenModule =
|
||||
{
|
||||
"UnityEngine.GridModule.dll",
|
||||
0,
|
||||
NULL,
|
||||
0,
|
||||
NULL,
|
||||
NULL,
|
||||
0,
|
||||
NULL,
|
||||
0,
|
||||
NULL,
|
||||
0,
|
||||
NULL,
|
||||
NULL,
|
||||
NULL, // module initializer,
|
||||
NULL,
|
||||
NULL,
|
||||
NULL,
|
||||
};
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,184 @@
|
||||
#include "pch-cpp.hpp"
|
||||
|
||||
#ifndef _MSC_VER
|
||||
# include <alloca.h>
|
||||
#else
|
||||
# include <malloc.h>
|
||||
#endif
|
||||
|
||||
|
||||
#include <limits>
|
||||
|
||||
|
||||
|
||||
// System.Byte[]
|
||||
struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
|
||||
// System.String
|
||||
struct String_t;
|
||||
|
||||
|
||||
|
||||
IL2CPP_EXTERN_C_BEGIN
|
||||
IL2CPP_EXTERN_C_END
|
||||
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic push
|
||||
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
||||
#pragma clang diagnostic ignored "-Wunused-variable"
|
||||
#endif
|
||||
|
||||
// <PrivateImplementationDetails>
|
||||
struct U3CPrivateImplementationDetailsU3E_tCA0A4120E1B13462A402E739CE2DD9CA72BAC713 : public RuntimeObject
|
||||
{
|
||||
};
|
||||
|
||||
// System.String
|
||||
struct String_t : public RuntimeObject
|
||||
{
|
||||
// System.Int32 System.String::_stringLength
|
||||
int32_t ____stringLength_4;
|
||||
// System.Char System.String::_firstChar
|
||||
Il2CppChar ____firstChar_5;
|
||||
};
|
||||
|
||||
// System.ValueType
|
||||
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F : public RuntimeObject
|
||||
{
|
||||
};
|
||||
// Native definition for P/Invoke marshalling of System.ValueType
|
||||
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_pinvoke
|
||||
{
|
||||
};
|
||||
// Native definition for COM marshalling of System.ValueType
|
||||
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_com
|
||||
{
|
||||
};
|
||||
|
||||
// System.Char
|
||||
struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17
|
||||
{
|
||||
// System.Char System.Char::m_value
|
||||
Il2CppChar ___m_value_0;
|
||||
};
|
||||
|
||||
// System.Int32
|
||||
struct Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C
|
||||
{
|
||||
// System.Int32 System.Int32::m_value
|
||||
int32_t ___m_value_0;
|
||||
};
|
||||
|
||||
// System.UInt32
|
||||
struct UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B
|
||||
{
|
||||
// System.UInt32 System.UInt32::m_value
|
||||
uint32_t ___m_value_0;
|
||||
};
|
||||
|
||||
// <PrivateImplementationDetails>
|
||||
|
||||
// <PrivateImplementationDetails>
|
||||
|
||||
// System.String
|
||||
struct String_t_StaticFields
|
||||
{
|
||||
// System.String System.String::Empty
|
||||
String_t* ___Empty_6;
|
||||
};
|
||||
|
||||
// System.String
|
||||
|
||||
// System.Char
|
||||
struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17_StaticFields
|
||||
{
|
||||
// System.Byte[] System.Char::s_categoryForLatin1
|
||||
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___s_categoryForLatin1_3;
|
||||
};
|
||||
|
||||
// System.Char
|
||||
|
||||
// System.Int32
|
||||
|
||||
// System.Int32
|
||||
|
||||
// System.UInt32
|
||||
|
||||
// System.UInt32
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic pop
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
// System.Char System.String::get_Chars(System.Int32)
|
||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3 (String_t* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
||||
// System.Int32 System.String::get_Length()
|
||||
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline (String_t* __this, const RuntimeMethod* method) ;
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic push
|
||||
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
||||
#pragma clang diagnostic ignored "-Wunused-variable"
|
||||
#endif
|
||||
// System.UInt32 <PrivateImplementationDetails>::ComputeStringHash(System.String)
|
||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t U3CPrivateImplementationDetailsU3E_ComputeStringHash_m3791FADF6D0284BCC1AF6156A077038C2AA23055 (String_t* ___0_s, const RuntimeMethod* method)
|
||||
{
|
||||
uint32_t V_0 = 0;
|
||||
int32_t V_1 = 0;
|
||||
{
|
||||
String_t* L_0 = ___0_s;
|
||||
if (!L_0)
|
||||
{
|
||||
goto IL_002c;
|
||||
}
|
||||
}
|
||||
{
|
||||
V_0 = ((int32_t)-2128831035);
|
||||
V_1 = 0;
|
||||
goto IL_0021;
|
||||
}
|
||||
|
||||
IL_000d:
|
||||
{
|
||||
String_t* L_1 = ___0_s;
|
||||
int32_t L_2 = V_1;
|
||||
NullCheck(L_1);
|
||||
Il2CppChar L_3;
|
||||
L_3 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_1, L_2, NULL);
|
||||
uint32_t L_4 = V_0;
|
||||
V_0 = ((int32_t)il2cpp_codegen_multiply(((int32_t)((int32_t)L_3^(int32_t)L_4)), ((int32_t)16777619)));
|
||||
int32_t L_5 = V_1;
|
||||
V_1 = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
||||
}
|
||||
|
||||
IL_0021:
|
||||
{
|
||||
int32_t L_6 = V_1;
|
||||
String_t* L_7 = ___0_s;
|
||||
NullCheck(L_7);
|
||||
int32_t L_8;
|
||||
L_8 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_7, NULL);
|
||||
if ((((int32_t)L_6) >= ((int32_t)L_8)))
|
||||
{
|
||||
goto IL_002c;
|
||||
}
|
||||
}
|
||||
{
|
||||
goto IL_000d;
|
||||
}
|
||||
|
||||
IL_002c:
|
||||
{
|
||||
uint32_t L_9 = V_0;
|
||||
return L_9;
|
||||
}
|
||||
}
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic pop
|
||||
#endif
|
||||
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline (String_t* __this, const RuntimeMethod* method)
|
||||
{
|
||||
{
|
||||
int32_t L_0 = __this->____stringLength_4;
|
||||
return L_0;
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,288 @@
|
||||
#include "pch-c.h"
|
||||
#ifndef _MSC_VER
|
||||
# include <alloca.h>
|
||||
#else
|
||||
# include <malloc.h>
|
||||
#endif
|
||||
|
||||
|
||||
#include "codegen/il2cpp-codegen-metadata.h"
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// 0x00000001 System.Int32 UnityEngine.Touch::get_fingerId()
|
||||
extern void Touch_get_fingerId_mC1DCE93BFA0574960A3AE5329AE6C5F7E06962BD (void);
|
||||
// 0x00000002 UnityEngine.Vector2 UnityEngine.Touch::get_position()
|
||||
extern void Touch_get_position_m41B9EB0F3F3E1BE98CEB388253A9E31979CB964A (void);
|
||||
// 0x00000003 System.Void UnityEngine.Touch::set_position(UnityEngine.Vector2)
|
||||
extern void Touch_set_position_mF024C46352D1CB82991022138D48BC84D9248E6B (void);
|
||||
// 0x00000004 UnityEngine.Vector2 UnityEngine.Touch::get_rawPosition()
|
||||
extern void Touch_get_rawPosition_m15F230BC7B4B672380BF221E9BA1DC275180863D (void);
|
||||
// 0x00000005 System.Void UnityEngine.Touch::set_rawPosition(UnityEngine.Vector2)
|
||||
extern void Touch_set_rawPosition_m734916CD0826F5CD242A0C6647AC55E53272590B (void);
|
||||
// 0x00000006 UnityEngine.Vector2 UnityEngine.Touch::get_deltaPosition()
|
||||
extern void Touch_get_deltaPosition_m2D51F960B74C94821ED0F6A09E44C80FD796D299 (void);
|
||||
// 0x00000007 System.Void UnityEngine.Touch::set_deltaPosition(UnityEngine.Vector2)
|
||||
extern void Touch_set_deltaPosition_mD2323B6E679DA9CE9FE1E3F4D3E2D12A33328E7A (void);
|
||||
// 0x00000008 System.Single UnityEngine.Touch::get_deltaTime()
|
||||
extern void Touch_get_deltaTime_mD07672B54CBA02C226097B54E286C1DFE96EC3BC (void);
|
||||
// 0x00000009 System.Int32 UnityEngine.Touch::get_tapCount()
|
||||
extern void Touch_get_tapCount_mE75D2783AC38FCF536C99F36AB9F76AFA3EB7EB6 (void);
|
||||
// 0x0000000A UnityEngine.TouchPhase UnityEngine.Touch::get_phase()
|
||||
extern void Touch_get_phase_mB82409FB2BE1C32ABDBA6A72E52A099D28AB70B0 (void);
|
||||
// 0x0000000B System.Single UnityEngine.Touch::get_pressure()
|
||||
extern void Touch_get_pressure_mB8214D0E920156CA4679BAC03E86106E8E4BDA5C (void);
|
||||
// 0x0000000C System.Single UnityEngine.Touch::get_maximumPossiblePressure()
|
||||
extern void Touch_get_maximumPossiblePressure_m2D147A58465EB39B397722D8597CF9E06AC85FAE (void);
|
||||
// 0x0000000D UnityEngine.TouchType UnityEngine.Touch::get_type()
|
||||
extern void Touch_get_type_mB505EF2DCF13160DFA0C6AAF406DCB4CBED20745 (void);
|
||||
// 0x0000000E System.Single UnityEngine.Touch::get_altitudeAngle()
|
||||
extern void Touch_get_altitudeAngle_m26DEF010E2CDC23F4FADE8E49A986D557C07D391 (void);
|
||||
// 0x0000000F System.Single UnityEngine.Touch::get_azimuthAngle()
|
||||
extern void Touch_get_azimuthAngle_m2F11532183492E608922A2F9D9EC9AC31D34F490 (void);
|
||||
// 0x00000010 System.Single UnityEngine.Touch::get_radius()
|
||||
extern void Touch_get_radius_m5BC9C50DABBB17B07742BAFC6CC36A6736AE7960 (void);
|
||||
// 0x00000011 System.Single UnityEngine.Touch::get_radiusVariance()
|
||||
extern void Touch_get_radiusVariance_m6F54BE964B91C3B2F8FA2A483E1FDB644B282B21 (void);
|
||||
// 0x00000012 UnityEngine.GameObject UnityEngine.CameraRaycastHelper::RaycastTry(UnityEngine.Camera,UnityEngine.Ray,System.Single,System.Int32)
|
||||
extern void CameraRaycastHelper_RaycastTry_m79A654495BD2C09623E9067BCC70D23A0DA3BF58 (void);
|
||||
// 0x00000013 UnityEngine.GameObject UnityEngine.CameraRaycastHelper::RaycastTry2D(UnityEngine.Camera,UnityEngine.Ray,System.Single,System.Int32)
|
||||
extern void CameraRaycastHelper_RaycastTry2D_m132832B9171CD030AD231A63BF70D1226ED1F373 (void);
|
||||
// 0x00000014 UnityEngine.GameObject UnityEngine.CameraRaycastHelper::RaycastTry_Injected(UnityEngine.Camera,UnityEngine.Ray&,System.Single,System.Int32)
|
||||
extern void CameraRaycastHelper_RaycastTry_Injected_m4A9EA285FB7B24B7B3D894E7EE997B41ED302DEF (void);
|
||||
// 0x00000015 UnityEngine.GameObject UnityEngine.CameraRaycastHelper::RaycastTry2D_Injected(UnityEngine.Camera,UnityEngine.Ray&,System.Single,System.Int32)
|
||||
extern void CameraRaycastHelper_RaycastTry2D_Injected_m2620821FE8CB793C314AAE43E3B4C7BEAE5D4C9E (void);
|
||||
// 0x00000016 System.Single UnityEngine.Input::GetAxis(System.String)
|
||||
extern void Input_GetAxis_m10372E6C5FF591668D2DC5F58C58D213CC598A62 (void);
|
||||
// 0x00000017 System.Single UnityEngine.Input::GetAxisRaw(System.String)
|
||||
extern void Input_GetAxisRaw_m47C0CF8E090561A2F407A4E11D5F2A45044EB8E4 (void);
|
||||
// 0x00000018 System.Boolean UnityEngine.Input::GetButtonDown(System.String)
|
||||
extern void Input_GetButtonDown_mEF5F80C9E8F04104E807D9CBD6F70CDB98751579 (void);
|
||||
// 0x00000019 System.Boolean UnityEngine.Input::GetMouseButton(System.Int32)
|
||||
extern void Input_GetMouseButton_m4995DD4A2D4F916565C1B1B5AAF7DF17C126B3EA (void);
|
||||
// 0x0000001A System.Boolean UnityEngine.Input::GetMouseButtonDown(System.Int32)
|
||||
extern void Input_GetMouseButtonDown_m8DFC792D15FFF15D311614D5CC6C5D055E5A1DE3 (void);
|
||||
// 0x0000001B System.Boolean UnityEngine.Input::GetMouseButtonUp(System.Int32)
|
||||
extern void Input_GetMouseButtonUp_mBE89CC9C69BBEA9A863819E77EA54411B0476ED6 (void);
|
||||
// 0x0000001C UnityEngine.Touch UnityEngine.Input::GetTouch(System.Int32)
|
||||
extern void Input_GetTouch_m75D99FE801A94279874FA8DC6B6ADAD35F5123B1 (void);
|
||||
// 0x0000001D UnityEngine.Vector3 UnityEngine.Input::get_mousePosition()
|
||||
extern void Input_get_mousePosition_mFF21FBD2647DAE2A23BD4C45571CA95D05A0A42C (void);
|
||||
// 0x0000001E UnityEngine.Vector2 UnityEngine.Input::get_mouseScrollDelta()
|
||||
extern void Input_get_mouseScrollDelta_mD112408E9182AA0F529179FF31E21D8DCD5CFA74 (void);
|
||||
// 0x0000001F UnityEngine.IMECompositionMode UnityEngine.Input::get_imeCompositionMode()
|
||||
extern void Input_get_imeCompositionMode_mAD9C0224B3845A9132D4265AF468FF203AA43BAC (void);
|
||||
// 0x00000020 System.Void UnityEngine.Input::set_imeCompositionMode(UnityEngine.IMECompositionMode)
|
||||
extern void Input_set_imeCompositionMode_m0399964447DDFE54E04F516A01696862F7174C9A (void);
|
||||
// 0x00000021 System.String UnityEngine.Input::get_compositionString()
|
||||
extern void Input_get_compositionString_mC9E603E4FB61090827F77A3D509BF3AA0A48C9A9 (void);
|
||||
// 0x00000022 UnityEngine.Vector2 UnityEngine.Input::get_compositionCursorPos()
|
||||
extern void Input_get_compositionCursorPos_mE1E48997CA0C30D206D08FAF06455123D8D24D15 (void);
|
||||
// 0x00000023 System.Void UnityEngine.Input::set_compositionCursorPos(UnityEngine.Vector2)
|
||||
extern void Input_set_compositionCursorPos_m16A856BFBF1DAE42B0089696906F530334861E98 (void);
|
||||
// 0x00000024 System.Boolean UnityEngine.Input::get_mousePresent()
|
||||
extern void Input_get_mousePresent_mAD77FFD987CD5B998AFAD4DAECADBC76034026BF (void);
|
||||
// 0x00000025 System.Int32 UnityEngine.Input::get_touchCount()
|
||||
extern void Input_get_touchCount_m057388BFC67A0F4CA53764B1022867ED81D01E39 (void);
|
||||
// 0x00000026 System.Boolean UnityEngine.Input::get_touchSupported()
|
||||
extern void Input_get_touchSupported_m2A4FA398A793861AE1BC5971A1363552AB33BEEF (void);
|
||||
// 0x00000027 System.Boolean UnityEngine.Input::CheckDisabled()
|
||||
extern void Input_CheckDisabled_m359B281F7F5DDAB74780E1898311AECD9B0ECCE1 (void);
|
||||
// 0x00000028 System.Void UnityEngine.Input::GetTouch_Injected(System.Int32,UnityEngine.Touch&)
|
||||
extern void Input_GetTouch_Injected_m04E25DD035583531339AB310FBDD4F5A30817F87 (void);
|
||||
// 0x00000029 System.Void UnityEngine.Input::get_mousePosition_Injected(UnityEngine.Vector3&)
|
||||
extern void Input_get_mousePosition_Injected_m7EF43ADB535051F9182A366CA84951F946984E1A (void);
|
||||
// 0x0000002A System.Void UnityEngine.Input::get_mouseScrollDelta_Injected(UnityEngine.Vector2&)
|
||||
extern void Input_get_mouseScrollDelta_Injected_m31BF633C98E1BBA4583E7FCE0573BDECB1BA4A29 (void);
|
||||
// 0x0000002B System.Void UnityEngine.Input::get_compositionCursorPos_Injected(UnityEngine.Vector2&)
|
||||
extern void Input_get_compositionCursorPos_Injected_m67C1CB8A21F4708CA76FAB39E3BC436DE33C214E (void);
|
||||
// 0x0000002C System.Void UnityEngine.Input::set_compositionCursorPos_Injected(UnityEngine.Vector2&)
|
||||
extern void Input_set_compositionCursorPos_Injected_m46E4934CD2A9F2E97B8A86D52169C848EF6D91E8 (void);
|
||||
// 0x0000002D System.Void UnityEngine.SendMouseEvents::UpdateMouse()
|
||||
extern void SendMouseEvents_UpdateMouse_m7EC9A21B75612D3AA9ECEE2BB142A27481147FF1 (void);
|
||||
// 0x0000002E System.Void UnityEngine.SendMouseEvents::SetMouseMoved()
|
||||
extern void SendMouseEvents_SetMouseMoved_mDA82278267CC62E9942C9D6154610AD7F3308B51 (void);
|
||||
// 0x0000002F System.Void UnityEngine.SendMouseEvents::DoSendMouseEvents(System.Int32)
|
||||
extern void SendMouseEvents_DoSendMouseEvents_m17FCC3A684C7BC4A7A6AA7EBB62E3F56AAB416A7 (void);
|
||||
// 0x00000030 System.Void UnityEngine.SendMouseEvents::SendEvents(System.Int32,UnityEngine.SendMouseEvents/HitInfo)
|
||||
extern void SendMouseEvents_SendEvents_m3DA609154485AAA0F9501BAA602F63A9E357D35C (void);
|
||||
// 0x00000031 System.Void UnityEngine.SendMouseEvents::.cctor()
|
||||
extern void SendMouseEvents__cctor_m6B1E043BF3142442AC8312E9B28A54C487A5A755 (void);
|
||||
// 0x00000032 System.Void UnityEngine.SendMouseEvents/HitInfo::SendMessage(System.String)
|
||||
extern void HitInfo_SendMessage_m7834418ACE250BBCBA38ADCF0892E475BD1AD541 (void);
|
||||
// 0x00000033 System.Boolean UnityEngine.SendMouseEvents/HitInfo::op_Implicit(UnityEngine.SendMouseEvents/HitInfo)
|
||||
extern void HitInfo_op_Implicit_m4162F5E6640E1D2CB82AB0AE00090AB46CE997AC (void);
|
||||
// 0x00000034 System.Boolean UnityEngine.SendMouseEvents/HitInfo::Compare(UnityEngine.SendMouseEvents/HitInfo,UnityEngine.SendMouseEvents/HitInfo)
|
||||
extern void HitInfo_Compare_m374F9DF7CFE9C31264CD38D42FFFCA4DB0E6CD05 (void);
|
||||
static Il2CppMethodPointer s_methodPointers[52] =
|
||||
{
|
||||
Touch_get_fingerId_mC1DCE93BFA0574960A3AE5329AE6C5F7E06962BD,
|
||||
Touch_get_position_m41B9EB0F3F3E1BE98CEB388253A9E31979CB964A,
|
||||
Touch_set_position_mF024C46352D1CB82991022138D48BC84D9248E6B,
|
||||
Touch_get_rawPosition_m15F230BC7B4B672380BF221E9BA1DC275180863D,
|
||||
Touch_set_rawPosition_m734916CD0826F5CD242A0C6647AC55E53272590B,
|
||||
Touch_get_deltaPosition_m2D51F960B74C94821ED0F6A09E44C80FD796D299,
|
||||
Touch_set_deltaPosition_mD2323B6E679DA9CE9FE1E3F4D3E2D12A33328E7A,
|
||||
Touch_get_deltaTime_mD07672B54CBA02C226097B54E286C1DFE96EC3BC,
|
||||
Touch_get_tapCount_mE75D2783AC38FCF536C99F36AB9F76AFA3EB7EB6,
|
||||
Touch_get_phase_mB82409FB2BE1C32ABDBA6A72E52A099D28AB70B0,
|
||||
Touch_get_pressure_mB8214D0E920156CA4679BAC03E86106E8E4BDA5C,
|
||||
Touch_get_maximumPossiblePressure_m2D147A58465EB39B397722D8597CF9E06AC85FAE,
|
||||
Touch_get_type_mB505EF2DCF13160DFA0C6AAF406DCB4CBED20745,
|
||||
Touch_get_altitudeAngle_m26DEF010E2CDC23F4FADE8E49A986D557C07D391,
|
||||
Touch_get_azimuthAngle_m2F11532183492E608922A2F9D9EC9AC31D34F490,
|
||||
Touch_get_radius_m5BC9C50DABBB17B07742BAFC6CC36A6736AE7960,
|
||||
Touch_get_radiusVariance_m6F54BE964B91C3B2F8FA2A483E1FDB644B282B21,
|
||||
CameraRaycastHelper_RaycastTry_m79A654495BD2C09623E9067BCC70D23A0DA3BF58,
|
||||
CameraRaycastHelper_RaycastTry2D_m132832B9171CD030AD231A63BF70D1226ED1F373,
|
||||
CameraRaycastHelper_RaycastTry_Injected_m4A9EA285FB7B24B7B3D894E7EE997B41ED302DEF,
|
||||
CameraRaycastHelper_RaycastTry2D_Injected_m2620821FE8CB793C314AAE43E3B4C7BEAE5D4C9E,
|
||||
Input_GetAxis_m10372E6C5FF591668D2DC5F58C58D213CC598A62,
|
||||
Input_GetAxisRaw_m47C0CF8E090561A2F407A4E11D5F2A45044EB8E4,
|
||||
Input_GetButtonDown_mEF5F80C9E8F04104E807D9CBD6F70CDB98751579,
|
||||
Input_GetMouseButton_m4995DD4A2D4F916565C1B1B5AAF7DF17C126B3EA,
|
||||
Input_GetMouseButtonDown_m8DFC792D15FFF15D311614D5CC6C5D055E5A1DE3,
|
||||
Input_GetMouseButtonUp_mBE89CC9C69BBEA9A863819E77EA54411B0476ED6,
|
||||
Input_GetTouch_m75D99FE801A94279874FA8DC6B6ADAD35F5123B1,
|
||||
Input_get_mousePosition_mFF21FBD2647DAE2A23BD4C45571CA95D05A0A42C,
|
||||
Input_get_mouseScrollDelta_mD112408E9182AA0F529179FF31E21D8DCD5CFA74,
|
||||
Input_get_imeCompositionMode_mAD9C0224B3845A9132D4265AF468FF203AA43BAC,
|
||||
Input_set_imeCompositionMode_m0399964447DDFE54E04F516A01696862F7174C9A,
|
||||
Input_get_compositionString_mC9E603E4FB61090827F77A3D509BF3AA0A48C9A9,
|
||||
Input_get_compositionCursorPos_mE1E48997CA0C30D206D08FAF06455123D8D24D15,
|
||||
Input_set_compositionCursorPos_m16A856BFBF1DAE42B0089696906F530334861E98,
|
||||
Input_get_mousePresent_mAD77FFD987CD5B998AFAD4DAECADBC76034026BF,
|
||||
Input_get_touchCount_m057388BFC67A0F4CA53764B1022867ED81D01E39,
|
||||
Input_get_touchSupported_m2A4FA398A793861AE1BC5971A1363552AB33BEEF,
|
||||
Input_CheckDisabled_m359B281F7F5DDAB74780E1898311AECD9B0ECCE1,
|
||||
Input_GetTouch_Injected_m04E25DD035583531339AB310FBDD4F5A30817F87,
|
||||
Input_get_mousePosition_Injected_m7EF43ADB535051F9182A366CA84951F946984E1A,
|
||||
Input_get_mouseScrollDelta_Injected_m31BF633C98E1BBA4583E7FCE0573BDECB1BA4A29,
|
||||
Input_get_compositionCursorPos_Injected_m67C1CB8A21F4708CA76FAB39E3BC436DE33C214E,
|
||||
Input_set_compositionCursorPos_Injected_m46E4934CD2A9F2E97B8A86D52169C848EF6D91E8,
|
||||
SendMouseEvents_UpdateMouse_m7EC9A21B75612D3AA9ECEE2BB142A27481147FF1,
|
||||
SendMouseEvents_SetMouseMoved_mDA82278267CC62E9942C9D6154610AD7F3308B51,
|
||||
SendMouseEvents_DoSendMouseEvents_m17FCC3A684C7BC4A7A6AA7EBB62E3F56AAB416A7,
|
||||
SendMouseEvents_SendEvents_m3DA609154485AAA0F9501BAA602F63A9E357D35C,
|
||||
SendMouseEvents__cctor_m6B1E043BF3142442AC8312E9B28A54C487A5A755,
|
||||
HitInfo_SendMessage_m7834418ACE250BBCBA38ADCF0892E475BD1AD541,
|
||||
HitInfo_op_Implicit_m4162F5E6640E1D2CB82AB0AE00090AB46CE997AC,
|
||||
HitInfo_Compare_m374F9DF7CFE9C31264CD38D42FFFCA4DB0E6CD05,
|
||||
};
|
||||
extern void Touch_get_fingerId_mC1DCE93BFA0574960A3AE5329AE6C5F7E06962BD_AdjustorThunk (void);
|
||||
extern void Touch_get_position_m41B9EB0F3F3E1BE98CEB388253A9E31979CB964A_AdjustorThunk (void);
|
||||
extern void Touch_set_position_mF024C46352D1CB82991022138D48BC84D9248E6B_AdjustorThunk (void);
|
||||
extern void Touch_get_rawPosition_m15F230BC7B4B672380BF221E9BA1DC275180863D_AdjustorThunk (void);
|
||||
extern void Touch_set_rawPosition_m734916CD0826F5CD242A0C6647AC55E53272590B_AdjustorThunk (void);
|
||||
extern void Touch_get_deltaPosition_m2D51F960B74C94821ED0F6A09E44C80FD796D299_AdjustorThunk (void);
|
||||
extern void Touch_set_deltaPosition_mD2323B6E679DA9CE9FE1E3F4D3E2D12A33328E7A_AdjustorThunk (void);
|
||||
extern void Touch_get_deltaTime_mD07672B54CBA02C226097B54E286C1DFE96EC3BC_AdjustorThunk (void);
|
||||
extern void Touch_get_tapCount_mE75D2783AC38FCF536C99F36AB9F76AFA3EB7EB6_AdjustorThunk (void);
|
||||
extern void Touch_get_phase_mB82409FB2BE1C32ABDBA6A72E52A099D28AB70B0_AdjustorThunk (void);
|
||||
extern void Touch_get_pressure_mB8214D0E920156CA4679BAC03E86106E8E4BDA5C_AdjustorThunk (void);
|
||||
extern void Touch_get_maximumPossiblePressure_m2D147A58465EB39B397722D8597CF9E06AC85FAE_AdjustorThunk (void);
|
||||
extern void Touch_get_type_mB505EF2DCF13160DFA0C6AAF406DCB4CBED20745_AdjustorThunk (void);
|
||||
extern void Touch_get_altitudeAngle_m26DEF010E2CDC23F4FADE8E49A986D557C07D391_AdjustorThunk (void);
|
||||
extern void Touch_get_azimuthAngle_m2F11532183492E608922A2F9D9EC9AC31D34F490_AdjustorThunk (void);
|
||||
extern void Touch_get_radius_m5BC9C50DABBB17B07742BAFC6CC36A6736AE7960_AdjustorThunk (void);
|
||||
extern void Touch_get_radiusVariance_m6F54BE964B91C3B2F8FA2A483E1FDB644B282B21_AdjustorThunk (void);
|
||||
extern void HitInfo_SendMessage_m7834418ACE250BBCBA38ADCF0892E475BD1AD541_AdjustorThunk (void);
|
||||
static Il2CppTokenAdjustorThunkPair s_adjustorThunks[18] =
|
||||
{
|
||||
{ 0x06000001, Touch_get_fingerId_mC1DCE93BFA0574960A3AE5329AE6C5F7E06962BD_AdjustorThunk },
|
||||
{ 0x06000002, Touch_get_position_m41B9EB0F3F3E1BE98CEB388253A9E31979CB964A_AdjustorThunk },
|
||||
{ 0x06000003, Touch_set_position_mF024C46352D1CB82991022138D48BC84D9248E6B_AdjustorThunk },
|
||||
{ 0x06000004, Touch_get_rawPosition_m15F230BC7B4B672380BF221E9BA1DC275180863D_AdjustorThunk },
|
||||
{ 0x06000005, Touch_set_rawPosition_m734916CD0826F5CD242A0C6647AC55E53272590B_AdjustorThunk },
|
||||
{ 0x06000006, Touch_get_deltaPosition_m2D51F960B74C94821ED0F6A09E44C80FD796D299_AdjustorThunk },
|
||||
{ 0x06000007, Touch_set_deltaPosition_mD2323B6E679DA9CE9FE1E3F4D3E2D12A33328E7A_AdjustorThunk },
|
||||
{ 0x06000008, Touch_get_deltaTime_mD07672B54CBA02C226097B54E286C1DFE96EC3BC_AdjustorThunk },
|
||||
{ 0x06000009, Touch_get_tapCount_mE75D2783AC38FCF536C99F36AB9F76AFA3EB7EB6_AdjustorThunk },
|
||||
{ 0x0600000A, Touch_get_phase_mB82409FB2BE1C32ABDBA6A72E52A099D28AB70B0_AdjustorThunk },
|
||||
{ 0x0600000B, Touch_get_pressure_mB8214D0E920156CA4679BAC03E86106E8E4BDA5C_AdjustorThunk },
|
||||
{ 0x0600000C, Touch_get_maximumPossiblePressure_m2D147A58465EB39B397722D8597CF9E06AC85FAE_AdjustorThunk },
|
||||
{ 0x0600000D, Touch_get_type_mB505EF2DCF13160DFA0C6AAF406DCB4CBED20745_AdjustorThunk },
|
||||
{ 0x0600000E, Touch_get_altitudeAngle_m26DEF010E2CDC23F4FADE8E49A986D557C07D391_AdjustorThunk },
|
||||
{ 0x0600000F, Touch_get_azimuthAngle_m2F11532183492E608922A2F9D9EC9AC31D34F490_AdjustorThunk },
|
||||
{ 0x06000010, Touch_get_radius_m5BC9C50DABBB17B07742BAFC6CC36A6736AE7960_AdjustorThunk },
|
||||
{ 0x06000011, Touch_get_radiusVariance_m6F54BE964B91C3B2F8FA2A483E1FDB644B282B21_AdjustorThunk },
|
||||
{ 0x06000032, HitInfo_SendMessage_m7834418ACE250BBCBA38ADCF0892E475BD1AD541_AdjustorThunk },
|
||||
};
|
||||
static const int32_t s_InvokerIndices[52] =
|
||||
{
|
||||
3292,
|
||||
3386,
|
||||
2824,
|
||||
3386,
|
||||
2824,
|
||||
3386,
|
||||
2824,
|
||||
3348,
|
||||
3292,
|
||||
3292,
|
||||
3348,
|
||||
3348,
|
||||
3292,
|
||||
3348,
|
||||
3348,
|
||||
3348,
|
||||
3348,
|
||||
3954,
|
||||
3954,
|
||||
3939,
|
||||
3939,
|
||||
5024,
|
||||
5024,
|
||||
4844,
|
||||
4841,
|
||||
4841,
|
||||
4841,
|
||||
5052,
|
||||
5218,
|
||||
5217,
|
||||
5189,
|
||||
5111,
|
||||
5196,
|
||||
5217,
|
||||
5123,
|
||||
5176,
|
||||
5189,
|
||||
5176,
|
||||
5176,
|
||||
4705,
|
||||
5107,
|
||||
5107,
|
||||
5107,
|
||||
5107,
|
||||
5220,
|
||||
5220,
|
||||
5111,
|
||||
4711,
|
||||
5220,
|
||||
2760,
|
||||
4857,
|
||||
4491,
|
||||
};
|
||||
IL2CPP_EXTERN_C const Il2CppCodeGenModule g_UnityEngine_InputLegacyModule_CodeGenModule;
|
||||
const Il2CppCodeGenModule g_UnityEngine_InputLegacyModule_CodeGenModule =
|
||||
{
|
||||
"UnityEngine.InputLegacyModule.dll",
|
||||
52,
|
||||
s_methodPointers,
|
||||
18,
|
||||
s_adjustorThunks,
|
||||
s_InvokerIndices,
|
||||
0,
|
||||
NULL,
|
||||
0,
|
||||
NULL,
|
||||
0,
|
||||
NULL,
|
||||
NULL,
|
||||
NULL, // module initializer,
|
||||
NULL,
|
||||
NULL,
|
||||
NULL,
|
||||
};
|
||||
@@ -0,0 +1,681 @@
|
||||
#include "pch-cpp.hpp"
|
||||
|
||||
#ifndef _MSC_VER
|
||||
# include <alloca.h>
|
||||
#else
|
||||
# include <malloc.h>
|
||||
#endif
|
||||
|
||||
|
||||
#include <limits>
|
||||
|
||||
|
||||
template <typename R>
|
||||
struct VirtualFuncInvoker0
|
||||
{
|
||||
typedef R (*Func)(void*, const RuntimeMethod*);
|
||||
|
||||
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
|
||||
{
|
||||
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
||||
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
|
||||
}
|
||||
};
|
||||
template <typename R, typename T1>
|
||||
struct VirtualFuncInvoker1
|
||||
{
|
||||
typedef R (*Func)(void*, T1, const RuntimeMethod*);
|
||||
|
||||
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
|
||||
{
|
||||
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
||||
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
|
||||
}
|
||||
};
|
||||
|
||||
// System.IntPtr[]
|
||||
struct IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832;
|
||||
// System.Diagnostics.StackTrace[]
|
||||
struct StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF;
|
||||
// System.Type[]
|
||||
struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB;
|
||||
// System.ArgumentException
|
||||
struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263;
|
||||
// System.ArgumentNullException
|
||||
struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129;
|
||||
// System.Reflection.Binder
|
||||
struct Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235;
|
||||
// System.Collections.IDictionary
|
||||
struct IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220;
|
||||
// System.Reflection.MemberFilter
|
||||
struct MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553;
|
||||
// System.Runtime.Serialization.SafeSerializationManager
|
||||
struct SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6;
|
||||
// System.String
|
||||
struct String_t;
|
||||
// System.Type
|
||||
struct Type_t;
|
||||
// System.Void
|
||||
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915;
|
||||
|
||||
IL2CPP_EXTERN_C RuntimeClass* ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var;
|
||||
IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var;
|
||||
IL2CPP_EXTERN_C RuntimeClass* MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71_il2cpp_TypeInfo_var;
|
||||
IL2CPP_EXTERN_C RuntimeClass* Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var;
|
||||
IL2CPP_EXTERN_C RuntimeClass* ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A_il2cpp_TypeInfo_var;
|
||||
IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var;
|
||||
IL2CPP_EXTERN_C String_t* _stringLiteral1A021298794A95A088D89F0DFEE478EB088FC94B;
|
||||
IL2CPP_EXTERN_C String_t* _stringLiteral8B9E56C5D95D7C3EED5199236F70D44573B11813;
|
||||
IL2CPP_EXTERN_C String_t* _stringLiteral9149DCC4875937380DD00ED5471A7A1258254B95;
|
||||
IL2CPP_EXTERN_C String_t* _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
|
||||
IL2CPP_EXTERN_C String_t* _stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7;
|
||||
IL2CPP_EXTERN_C const RuntimeMethod* JsonUtility_FromJson_m6DF4F85BE40F8A96BAFEC189306813ECE30DF44A_RuntimeMethod_var;
|
||||
IL2CPP_EXTERN_C const RuntimeMethod* JsonUtility_ToJson_m53A1FEE0D388CF3A629E093C04B5E1A6D5463B53_RuntimeMethod_var;
|
||||
IL2CPP_EXTERN_C const RuntimeType* Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_0_0_0_var;
|
||||
struct Exception_t_marshaled_com;
|
||||
struct Exception_t_marshaled_pinvoke;
|
||||
|
||||
|
||||
IL2CPP_EXTERN_C_BEGIN
|
||||
IL2CPP_EXTERN_C_END
|
||||
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic push
|
||||
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
||||
#pragma clang diagnostic ignored "-Wunused-variable"
|
||||
#endif
|
||||
|
||||
// <Module>
|
||||
struct U3CModuleU3E_t2F9091E403B25A5364AE8A6B2C249E31D405E3F4
|
||||
{
|
||||
};
|
||||
|
||||
// UnityEngine.JsonUtility
|
||||
struct JsonUtility_t731013D97E03B7EDAE6186D6D6826A53B85F7197 : public RuntimeObject
|
||||
{
|
||||
};
|
||||
|
||||
// System.Reflection.MemberInfo
|
||||
struct MemberInfo_t : public RuntimeObject
|
||||
{
|
||||
};
|
||||
|
||||
// System.String
|
||||
struct String_t : public RuntimeObject
|
||||
{
|
||||
// System.Int32 System.String::_stringLength
|
||||
int32_t ____stringLength_4;
|
||||
// System.Char System.String::_firstChar
|
||||
Il2CppChar ____firstChar_5;
|
||||
};
|
||||
|
||||
// System.ValueType
|
||||
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F : public RuntimeObject
|
||||
{
|
||||
};
|
||||
// Native definition for P/Invoke marshalling of System.ValueType
|
||||
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_pinvoke
|
||||
{
|
||||
};
|
||||
// Native definition for COM marshalling of System.ValueType
|
||||
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_com
|
||||
{
|
||||
};
|
||||
|
||||
// System.Boolean
|
||||
struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22
|
||||
{
|
||||
// System.Boolean System.Boolean::m_value
|
||||
bool ___m_value_0;
|
||||
};
|
||||
|
||||
// System.IntPtr
|
||||
struct IntPtr_t
|
||||
{
|
||||
// System.Void* System.IntPtr::m_value
|
||||
void* ___m_value_0;
|
||||
};
|
||||
|
||||
// System.Void
|
||||
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915
|
||||
{
|
||||
union
|
||||
{
|
||||
struct
|
||||
{
|
||||
};
|
||||
uint8_t Void_t4861ACF8F4594C3437BB48B6E56783494B843915__padding[1];
|
||||
};
|
||||
};
|
||||
|
||||
// System.Exception
|
||||
struct Exception_t : public RuntimeObject
|
||||
{
|
||||
// System.String System.Exception::_className
|
||||
String_t* ____className_1;
|
||||
// System.String System.Exception::_message
|
||||
String_t* ____message_2;
|
||||
// System.Collections.IDictionary System.Exception::_data
|
||||
RuntimeObject* ____data_3;
|
||||
// System.Exception System.Exception::_innerException
|
||||
Exception_t* ____innerException_4;
|
||||
// System.String System.Exception::_helpURL
|
||||
String_t* ____helpURL_5;
|
||||
// System.Object System.Exception::_stackTrace
|
||||
RuntimeObject* ____stackTrace_6;
|
||||
// System.String System.Exception::_stackTraceString
|
||||
String_t* ____stackTraceString_7;
|
||||
// System.String System.Exception::_remoteStackTraceString
|
||||
String_t* ____remoteStackTraceString_8;
|
||||
// System.Int32 System.Exception::_remoteStackIndex
|
||||
int32_t ____remoteStackIndex_9;
|
||||
// System.Object System.Exception::_dynamicMethods
|
||||
RuntimeObject* ____dynamicMethods_10;
|
||||
// System.Int32 System.Exception::_HResult
|
||||
int32_t ____HResult_11;
|
||||
// System.String System.Exception::_source
|
||||
String_t* ____source_12;
|
||||
// System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager
|
||||
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
|
||||
// System.Diagnostics.StackTrace[] System.Exception::captured_traces
|
||||
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
|
||||
// System.IntPtr[] System.Exception::native_trace_ips
|
||||
IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832* ___native_trace_ips_15;
|
||||
// System.Int32 System.Exception::caught_in_unmanaged
|
||||
int32_t ___caught_in_unmanaged_16;
|
||||
};
|
||||
// Native definition for P/Invoke marshalling of System.Exception
|
||||
struct Exception_t_marshaled_pinvoke
|
||||
{
|
||||
char* ____className_1;
|
||||
char* ____message_2;
|
||||
RuntimeObject* ____data_3;
|
||||
Exception_t_marshaled_pinvoke* ____innerException_4;
|
||||
char* ____helpURL_5;
|
||||
Il2CppIUnknown* ____stackTrace_6;
|
||||
char* ____stackTraceString_7;
|
||||
char* ____remoteStackTraceString_8;
|
||||
int32_t ____remoteStackIndex_9;
|
||||
Il2CppIUnknown* ____dynamicMethods_10;
|
||||
int32_t ____HResult_11;
|
||||
char* ____source_12;
|
||||
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
|
||||
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
|
||||
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
|
||||
int32_t ___caught_in_unmanaged_16;
|
||||
};
|
||||
// Native definition for COM marshalling of System.Exception
|
||||
struct Exception_t_marshaled_com
|
||||
{
|
||||
Il2CppChar* ____className_1;
|
||||
Il2CppChar* ____message_2;
|
||||
RuntimeObject* ____data_3;
|
||||
Exception_t_marshaled_com* ____innerException_4;
|
||||
Il2CppChar* ____helpURL_5;
|
||||
Il2CppIUnknown* ____stackTrace_6;
|
||||
Il2CppChar* ____stackTraceString_7;
|
||||
Il2CppChar* ____remoteStackTraceString_8;
|
||||
int32_t ____remoteStackIndex_9;
|
||||
Il2CppIUnknown* ____dynamicMethods_10;
|
||||
int32_t ____HResult_11;
|
||||
Il2CppChar* ____source_12;
|
||||
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
|
||||
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
|
||||
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
|
||||
int32_t ___caught_in_unmanaged_16;
|
||||
};
|
||||
|
||||
// UnityEngine.Object
|
||||
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C : public RuntimeObject
|
||||
{
|
||||
// System.IntPtr UnityEngine.Object::m_CachedPtr
|
||||
intptr_t ___m_CachedPtr_0;
|
||||
};
|
||||
// Native definition for P/Invoke marshalling of UnityEngine.Object
|
||||
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_pinvoke
|
||||
{
|
||||
intptr_t ___m_CachedPtr_0;
|
||||
};
|
||||
// Native definition for COM marshalling of UnityEngine.Object
|
||||
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_com
|
||||
{
|
||||
intptr_t ___m_CachedPtr_0;
|
||||
};
|
||||
|
||||
// System.RuntimeTypeHandle
|
||||
struct RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B
|
||||
{
|
||||
// System.IntPtr System.RuntimeTypeHandle::value
|
||||
intptr_t ___value_0;
|
||||
};
|
||||
|
||||
// UnityEngine.Component
|
||||
struct Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3 : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
|
||||
{
|
||||
};
|
||||
|
||||
// UnityEngine.ScriptableObject
|
||||
struct ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
|
||||
{
|
||||
};
|
||||
// Native definition for P/Invoke marshalling of UnityEngine.ScriptableObject
|
||||
struct ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A_marshaled_pinvoke : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_pinvoke
|
||||
{
|
||||
};
|
||||
// Native definition for COM marshalling of UnityEngine.ScriptableObject
|
||||
struct ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A_marshaled_com : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_com
|
||||
{
|
||||
};
|
||||
|
||||
// System.SystemException
|
||||
struct SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 : public Exception_t
|
||||
{
|
||||
};
|
||||
|
||||
// System.Type
|
||||
struct Type_t : public MemberInfo_t
|
||||
{
|
||||
// System.RuntimeTypeHandle System.Type::_impl
|
||||
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ____impl_8;
|
||||
};
|
||||
|
||||
// System.ArgumentException
|
||||
struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
||||
{
|
||||
// System.String System.ArgumentException::_paramName
|
||||
String_t* ____paramName_18;
|
||||
};
|
||||
|
||||
// UnityEngine.Behaviour
|
||||
struct Behaviour_t01970CFBBA658497AE30F311C447DB0440BAB7FA : public Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3
|
||||
{
|
||||
};
|
||||
|
||||
// System.ArgumentNullException
|
||||
struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129 : public ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263
|
||||
{
|
||||
};
|
||||
|
||||
// UnityEngine.MonoBehaviour
|
||||
struct MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71 : public Behaviour_t01970CFBBA658497AE30F311C447DB0440BAB7FA
|
||||
{
|
||||
};
|
||||
|
||||
// <Module>
|
||||
|
||||
// <Module>
|
||||
|
||||
// UnityEngine.JsonUtility
|
||||
|
||||
// UnityEngine.JsonUtility
|
||||
|
||||
// System.Reflection.MemberInfo
|
||||
|
||||
// System.Reflection.MemberInfo
|
||||
|
||||
// System.String
|
||||
struct String_t_StaticFields
|
||||
{
|
||||
// System.String System.String::Empty
|
||||
String_t* ___Empty_6;
|
||||
};
|
||||
|
||||
// System.String
|
||||
|
||||
// System.Boolean
|
||||
struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_StaticFields
|
||||
{
|
||||
// System.String System.Boolean::TrueString
|
||||
String_t* ___TrueString_5;
|
||||
// System.String System.Boolean::FalseString
|
||||
String_t* ___FalseString_6;
|
||||
};
|
||||
|
||||
// System.Boolean
|
||||
|
||||
// System.Void
|
||||
|
||||
// System.Void
|
||||
|
||||
// UnityEngine.Object
|
||||
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_StaticFields
|
||||
{
|
||||
// System.Int32 UnityEngine.Object::OffsetOfInstanceIDInCPlusPlusObject
|
||||
int32_t ___OffsetOfInstanceIDInCPlusPlusObject_1;
|
||||
};
|
||||
|
||||
// UnityEngine.Object
|
||||
|
||||
// System.RuntimeTypeHandle
|
||||
|
||||
// System.RuntimeTypeHandle
|
||||
|
||||
// UnityEngine.ScriptableObject
|
||||
|
||||
// UnityEngine.ScriptableObject
|
||||
|
||||
// System.Type
|
||||
struct Type_t_StaticFields
|
||||
{
|
||||
// System.Reflection.Binder modreq(System.Runtime.CompilerServices.IsVolatile) System.Type::s_defaultBinder
|
||||
Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235* ___s_defaultBinder_0;
|
||||
// System.Char System.Type::Delimiter
|
||||
Il2CppChar ___Delimiter_1;
|
||||
// System.Type[] System.Type::EmptyTypes
|
||||
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___EmptyTypes_2;
|
||||
// System.Object System.Type::Missing
|
||||
RuntimeObject* ___Missing_3;
|
||||
// System.Reflection.MemberFilter System.Type::FilterAttribute
|
||||
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterAttribute_4;
|
||||
// System.Reflection.MemberFilter System.Type::FilterName
|
||||
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterName_5;
|
||||
// System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase
|
||||
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterNameIgnoreCase_6;
|
||||
};
|
||||
|
||||
// System.Type
|
||||
|
||||
// System.ArgumentException
|
||||
|
||||
// System.ArgumentException
|
||||
|
||||
// System.ArgumentNullException
|
||||
|
||||
// System.ArgumentNullException
|
||||
|
||||
// UnityEngine.MonoBehaviour
|
||||
|
||||
// UnityEngine.MonoBehaviour
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic pop
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
// System.String UnityEngine.JsonUtility::ToJson(System.Object,System.Boolean)
|
||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JsonUtility_ToJson_m53A1FEE0D388CF3A629E093C04B5E1A6D5463B53 (RuntimeObject* ___0_obj, bool ___1_prettyPrint, const RuntimeMethod* method) ;
|
||||
// System.Void System.ArgumentException::.ctor(System.String)
|
||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, String_t* ___0_message, const RuntimeMethod* method) ;
|
||||
// System.String UnityEngine.JsonUtility::ToJsonInternal(System.Object,System.Boolean)
|
||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JsonUtility_ToJsonInternal_mB893BE1511779B2E36B24BC77D2FB52BF5894CDD (RuntimeObject* ___0_obj, bool ___1_prettyPrint, const RuntimeMethod* method) ;
|
||||
// System.Boolean System.String::IsNullOrEmpty(System.String)
|
||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478 (String_t* ___0_value, const RuntimeMethod* method) ;
|
||||
// System.Void System.ArgumentNullException::.ctor(System.String)
|
||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* __this, String_t* ___0_paramName, const RuntimeMethod* method) ;
|
||||
// System.Boolean System.Type::get_IsAbstract()
|
||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsAbstract_m16FA83463867635ED9DECAE1C5F6BE96B4579CE5 (Type_t* __this, const RuntimeMethod* method) ;
|
||||
// System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle)
|
||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57 (RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ___0_handle, const RuntimeMethod* method) ;
|
||||
// System.String System.String::Concat(System.String,System.String,System.String)
|
||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B (String_t* ___0_str0, String_t* ___1_str1, String_t* ___2_str2, const RuntimeMethod* method) ;
|
||||
// System.Object UnityEngine.JsonUtility::FromJsonInternal(System.String,System.Object,System.Type)
|
||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonUtility_FromJsonInternal_m6C8155071DFF33D870873F945D1E4C965D1FE6C0 (String_t* ___0_json, RuntimeObject* ___1_objectToOverwrite, Type_t* ___2_type, const RuntimeMethod* method) ;
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic push
|
||||
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
||||
#pragma clang diagnostic ignored "-Wunused-variable"
|
||||
#endif
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic pop
|
||||
#endif
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic push
|
||||
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
||||
#pragma clang diagnostic ignored "-Wunused-variable"
|
||||
#endif
|
||||
// System.String UnityEngine.JsonUtility::ToJsonInternal(System.Object,System.Boolean)
|
||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JsonUtility_ToJsonInternal_mB893BE1511779B2E36B24BC77D2FB52BF5894CDD (RuntimeObject* ___0_obj, bool ___1_prettyPrint, const RuntimeMethod* method)
|
||||
{
|
||||
typedef String_t* (*JsonUtility_ToJsonInternal_mB893BE1511779B2E36B24BC77D2FB52BF5894CDD_ftn) (RuntimeObject*, bool);
|
||||
static JsonUtility_ToJsonInternal_mB893BE1511779B2E36B24BC77D2FB52BF5894CDD_ftn _il2cpp_icall_func;
|
||||
if (!_il2cpp_icall_func)
|
||||
_il2cpp_icall_func = (JsonUtility_ToJsonInternal_mB893BE1511779B2E36B24BC77D2FB52BF5894CDD_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.JsonUtility::ToJsonInternal(System.Object,System.Boolean)");
|
||||
String_t* icallRetVal = _il2cpp_icall_func(___0_obj, ___1_prettyPrint);
|
||||
return icallRetVal;
|
||||
}
|
||||
// System.Object UnityEngine.JsonUtility::FromJsonInternal(System.String,System.Object,System.Type)
|
||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonUtility_FromJsonInternal_m6C8155071DFF33D870873F945D1E4C965D1FE6C0 (String_t* ___0_json, RuntimeObject* ___1_objectToOverwrite, Type_t* ___2_type, const RuntimeMethod* method)
|
||||
{
|
||||
typedef RuntimeObject* (*JsonUtility_FromJsonInternal_m6C8155071DFF33D870873F945D1E4C965D1FE6C0_ftn) (String_t*, RuntimeObject*, Type_t*);
|
||||
static JsonUtility_FromJsonInternal_m6C8155071DFF33D870873F945D1E4C965D1FE6C0_ftn _il2cpp_icall_func;
|
||||
if (!_il2cpp_icall_func)
|
||||
_il2cpp_icall_func = (JsonUtility_FromJsonInternal_m6C8155071DFF33D870873F945D1E4C965D1FE6C0_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.JsonUtility::FromJsonInternal(System.String,System.Object,System.Type)");
|
||||
RuntimeObject* icallRetVal = _il2cpp_icall_func(___0_json, ___1_objectToOverwrite, ___2_type);
|
||||
return icallRetVal;
|
||||
}
|
||||
// System.String UnityEngine.JsonUtility::ToJson(System.Object)
|
||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JsonUtility_ToJson_m28CC6843B9D3723D88AD13EA3829B71FDE7826BA (RuntimeObject* ___0_obj, const RuntimeMethod* method)
|
||||
{
|
||||
String_t* V_0 = NULL;
|
||||
{
|
||||
RuntimeObject* L_0 = ___0_obj;
|
||||
String_t* L_1;
|
||||
L_1 = JsonUtility_ToJson_m53A1FEE0D388CF3A629E093C04B5E1A6D5463B53(L_0, (bool)0, NULL);
|
||||
V_0 = L_1;
|
||||
goto IL_000b;
|
||||
}
|
||||
|
||||
IL_000b:
|
||||
{
|
||||
String_t* L_2 = V_0;
|
||||
return L_2;
|
||||
}
|
||||
}
|
||||
// System.String UnityEngine.JsonUtility::ToJson(System.Object,System.Boolean)
|
||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JsonUtility_ToJson_m53A1FEE0D388CF3A629E093C04B5E1A6D5463B53 (RuntimeObject* ___0_obj, bool ___1_prettyPrint, const RuntimeMethod* method)
|
||||
{
|
||||
static bool s_Il2CppMethodInitialized;
|
||||
if (!s_Il2CppMethodInitialized)
|
||||
{
|
||||
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71_il2cpp_TypeInfo_var);
|
||||
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
||||
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A_il2cpp_TypeInfo_var);
|
||||
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
|
||||
s_Il2CppMethodInitialized = true;
|
||||
}
|
||||
bool V_0 = false;
|
||||
String_t* V_1 = NULL;
|
||||
bool V_2 = false;
|
||||
int32_t G_B6_0 = 0;
|
||||
int32_t G_B8_0 = 0;
|
||||
{
|
||||
RuntimeObject* L_0 = ___0_obj;
|
||||
V_0 = (bool)((((RuntimeObject*)(RuntimeObject*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
||||
bool L_1 = V_0;
|
||||
if (!L_1)
|
||||
{
|
||||
goto IL_0011;
|
||||
}
|
||||
}
|
||||
{
|
||||
V_1 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
|
||||
goto IL_004c;
|
||||
}
|
||||
|
||||
IL_0011:
|
||||
{
|
||||
RuntimeObject* L_2 = ___0_obj;
|
||||
if (!((Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)IsInstClass((RuntimeObject*)L_2, Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var)))
|
||||
{
|
||||
goto IL_0032;
|
||||
}
|
||||
}
|
||||
{
|
||||
RuntimeObject* L_3 = ___0_obj;
|
||||
if (((MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71*)IsInstClass((RuntimeObject*)L_3, MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71_il2cpp_TypeInfo_var)))
|
||||
{
|
||||
goto IL_002f;
|
||||
}
|
||||
}
|
||||
{
|
||||
RuntimeObject* L_4 = ___0_obj;
|
||||
G_B6_0 = ((((int32_t)((!(((RuntimeObject*)(ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A*)((ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A*)IsInstClass((RuntimeObject*)L_4, ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
||||
goto IL_0030;
|
||||
}
|
||||
|
||||
IL_002f:
|
||||
{
|
||||
G_B6_0 = 0;
|
||||
}
|
||||
|
||||
IL_0030:
|
||||
{
|
||||
G_B8_0 = G_B6_0;
|
||||
goto IL_0033;
|
||||
}
|
||||
|
||||
IL_0032:
|
||||
{
|
||||
G_B8_0 = 0;
|
||||
}
|
||||
|
||||
IL_0033:
|
||||
{
|
||||
V_2 = (bool)G_B8_0;
|
||||
bool L_5 = V_2;
|
||||
if (!L_5)
|
||||
{
|
||||
goto IL_0042;
|
||||
}
|
||||
}
|
||||
{
|
||||
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_6 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
||||
NullCheck(L_6);
|
||||
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8B9E56C5D95D7C3EED5199236F70D44573B11813)), NULL);
|
||||
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonUtility_ToJson_m53A1FEE0D388CF3A629E093C04B5E1A6D5463B53_RuntimeMethod_var)));
|
||||
}
|
||||
|
||||
IL_0042:
|
||||
{
|
||||
RuntimeObject* L_7 = ___0_obj;
|
||||
bool L_8 = ___1_prettyPrint;
|
||||
String_t* L_9;
|
||||
L_9 = JsonUtility_ToJsonInternal_mB893BE1511779B2E36B24BC77D2FB52BF5894CDD(L_7, L_8, NULL);
|
||||
V_1 = L_9;
|
||||
goto IL_004c;
|
||||
}
|
||||
|
||||
IL_004c:
|
||||
{
|
||||
String_t* L_10 = V_1;
|
||||
return L_10;
|
||||
}
|
||||
}
|
||||
// System.Object UnityEngine.JsonUtility::FromJson(System.String,System.Type)
|
||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonUtility_FromJson_m6DF4F85BE40F8A96BAFEC189306813ECE30DF44A (String_t* ___0_json, Type_t* ___1_type, const RuntimeMethod* method)
|
||||
{
|
||||
static bool s_Il2CppMethodInitialized;
|
||||
if (!s_Il2CppMethodInitialized)
|
||||
{
|
||||
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_0_0_0_var);
|
||||
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
|
||||
s_Il2CppMethodInitialized = true;
|
||||
}
|
||||
bool V_0 = false;
|
||||
RuntimeObject* V_1 = NULL;
|
||||
bool V_2 = false;
|
||||
bool V_3 = false;
|
||||
int32_t G_B7_0 = 0;
|
||||
{
|
||||
String_t* L_0 = ___0_json;
|
||||
bool L_1;
|
||||
L_1 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_0, NULL);
|
||||
V_0 = L_1;
|
||||
bool L_2 = V_0;
|
||||
if (!L_2)
|
||||
{
|
||||
goto IL_000f;
|
||||
}
|
||||
}
|
||||
{
|
||||
V_1 = NULL;
|
||||
goto IL_0067;
|
||||
}
|
||||
|
||||
IL_000f:
|
||||
{
|
||||
Type_t* L_3 = ___1_type;
|
||||
V_2 = (bool)((((RuntimeObject*)(Type_t*)L_3) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
||||
bool L_4 = V_2;
|
||||
if (!L_4)
|
||||
{
|
||||
goto IL_0022;
|
||||
}
|
||||
}
|
||||
{
|
||||
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_5 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
||||
NullCheck(L_5);
|
||||
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7)), NULL);
|
||||
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonUtility_FromJson_m6DF4F85BE40F8A96BAFEC189306813ECE30DF44A_RuntimeMethod_var)));
|
||||
}
|
||||
|
||||
IL_0022:
|
||||
{
|
||||
Type_t* L_6 = ___1_type;
|
||||
NullCheck(L_6);
|
||||
bool L_7;
|
||||
L_7 = Type_get_IsAbstract_m16FA83463867635ED9DECAE1C5F6BE96B4579CE5(L_6, NULL);
|
||||
if (L_7)
|
||||
{
|
||||
goto IL_003c;
|
||||
}
|
||||
}
|
||||
{
|
||||
Type_t* L_8 = ___1_type;
|
||||
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_9 = { reinterpret_cast<intptr_t> (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_0_0_0_var) };
|
||||
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
||||
Type_t* L_10;
|
||||
L_10 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_9, NULL);
|
||||
NullCheck(L_8);
|
||||
bool L_11;
|
||||
L_11 = VirtualFuncInvoker1< bool, Type_t* >::Invoke(20 /* System.Boolean System.Type::IsSubclassOf(System.Type) */, L_8, L_10);
|
||||
G_B7_0 = ((int32_t)(L_11));
|
||||
goto IL_003d;
|
||||
}
|
||||
|
||||
IL_003c:
|
||||
{
|
||||
G_B7_0 = 1;
|
||||
}
|
||||
|
||||
IL_003d:
|
||||
{
|
||||
V_3 = (bool)G_B7_0;
|
||||
bool L_12 = V_3;
|
||||
if (!L_12)
|
||||
{
|
||||
goto IL_005c;
|
||||
}
|
||||
}
|
||||
{
|
||||
Type_t* L_13 = ___1_type;
|
||||
NullCheck(L_13);
|
||||
String_t* L_14;
|
||||
L_14 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_13);
|
||||
String_t* L_15;
|
||||
L_15 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9149DCC4875937380DD00ED5471A7A1258254B95)), L_14, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1A021298794A95A088D89F0DFEE478EB088FC94B)), NULL);
|
||||
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_16 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
||||
NullCheck(L_16);
|
||||
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_16, L_15, NULL);
|
||||
IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonUtility_FromJson_m6DF4F85BE40F8A96BAFEC189306813ECE30DF44A_RuntimeMethod_var)));
|
||||
}
|
||||
|
||||
IL_005c:
|
||||
{
|
||||
String_t* L_17 = ___0_json;
|
||||
Type_t* L_18 = ___1_type;
|
||||
RuntimeObject* L_19;
|
||||
L_19 = JsonUtility_FromJsonInternal_m6C8155071DFF33D870873F945D1E4C965D1FE6C0(L_17, NULL, L_18, NULL);
|
||||
V_1 = L_19;
|
||||
goto IL_0067;
|
||||
}
|
||||
|
||||
IL_0067:
|
||||
{
|
||||
RuntimeObject* L_20 = V_1;
|
||||
return L_20;
|
||||
}
|
||||
}
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic pop
|
||||
#endif
|
||||
@@ -0,0 +1,75 @@
|
||||
#include "pch-c.h"
|
||||
#ifndef _MSC_VER
|
||||
# include <alloca.h>
|
||||
#else
|
||||
# include <malloc.h>
|
||||
#endif
|
||||
|
||||
|
||||
#include "codegen/il2cpp-codegen-metadata.h"
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// 0x00000001 System.String UnityEngine.JsonUtility::ToJsonInternal(System.Object,System.Boolean)
|
||||
extern void JsonUtility_ToJsonInternal_mB893BE1511779B2E36B24BC77D2FB52BF5894CDD (void);
|
||||
// 0x00000002 System.Object UnityEngine.JsonUtility::FromJsonInternal(System.String,System.Object,System.Type)
|
||||
extern void JsonUtility_FromJsonInternal_m6C8155071DFF33D870873F945D1E4C965D1FE6C0 (void);
|
||||
// 0x00000003 System.String UnityEngine.JsonUtility::ToJson(System.Object)
|
||||
extern void JsonUtility_ToJson_m28CC6843B9D3723D88AD13EA3829B71FDE7826BA (void);
|
||||
// 0x00000004 System.String UnityEngine.JsonUtility::ToJson(System.Object,System.Boolean)
|
||||
extern void JsonUtility_ToJson_m53A1FEE0D388CF3A629E093C04B5E1A6D5463B53 (void);
|
||||
// 0x00000005 T UnityEngine.JsonUtility::FromJson(System.String)
|
||||
// 0x00000006 System.Object UnityEngine.JsonUtility::FromJson(System.String,System.Type)
|
||||
extern void JsonUtility_FromJson_m6DF4F85BE40F8A96BAFEC189306813ECE30DF44A (void);
|
||||
static Il2CppMethodPointer s_methodPointers[6] =
|
||||
{
|
||||
JsonUtility_ToJsonInternal_mB893BE1511779B2E36B24BC77D2FB52BF5894CDD,
|
||||
JsonUtility_FromJsonInternal_m6C8155071DFF33D870873F945D1E4C965D1FE6C0,
|
||||
JsonUtility_ToJson_m28CC6843B9D3723D88AD13EA3829B71FDE7826BA,
|
||||
JsonUtility_ToJson_m53A1FEE0D388CF3A629E093C04B5E1A6D5463B53,
|
||||
NULL,
|
||||
JsonUtility_FromJson_m6DF4F85BE40F8A96BAFEC189306813ECE30DF44A,
|
||||
};
|
||||
static const int32_t s_InvokerIndices[6] =
|
||||
{
|
||||
4582,
|
||||
4222,
|
||||
4978,
|
||||
4582,
|
||||
0,
|
||||
4588,
|
||||
};
|
||||
static const Il2CppTokenRangePair s_rgctxIndices[1] =
|
||||
{
|
||||
{ 0x06000005, { 0, 2 } },
|
||||
};
|
||||
extern const uint32_t g_rgctx_T_tB3191261F083EB0AE2454F736BF8A220615E222C;
|
||||
extern const uint32_t g_rgctx_T_tB3191261F083EB0AE2454F736BF8A220615E222C;
|
||||
static const Il2CppRGCTXDefinition s_rgctxValues[2] =
|
||||
{
|
||||
{ (Il2CppRGCTXDataType)1, (const void *)&g_rgctx_T_tB3191261F083EB0AE2454F736BF8A220615E222C },
|
||||
{ (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T_tB3191261F083EB0AE2454F736BF8A220615E222C },
|
||||
};
|
||||
IL2CPP_EXTERN_C const Il2CppCodeGenModule g_UnityEngine_JSONSerializeModule_CodeGenModule;
|
||||
const Il2CppCodeGenModule g_UnityEngine_JSONSerializeModule_CodeGenModule =
|
||||
{
|
||||
"UnityEngine.JSONSerializeModule.dll",
|
||||
6,
|
||||
s_methodPointers,
|
||||
0,
|
||||
NULL,
|
||||
s_InvokerIndices,
|
||||
0,
|
||||
NULL,
|
||||
1,
|
||||
s_rgctxIndices,
|
||||
2,
|
||||
s_rgctxValues,
|
||||
NULL,
|
||||
NULL, // module initializer,
|
||||
NULL,
|
||||
NULL,
|
||||
NULL,
|
||||
};
|
||||
@@ -0,0 +1,446 @@
|
||||
#include "pch-cpp.hpp"
|
||||
|
||||
#ifndef _MSC_VER
|
||||
# include <alloca.h>
|
||||
#else
|
||||
# include <malloc.h>
|
||||
#endif
|
||||
|
||||
|
||||
#include <limits>
|
||||
|
||||
|
||||
|
||||
// System.Collections.Generic.List`1<System.Object>
|
||||
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D;
|
||||
// System.Collections.Generic.List`1<UnityEngine.Rigidbody2D>
|
||||
struct List_1_tCD5F926D25FC8BFAF39E4BE6F879C1FA11501C76;
|
||||
// UnityEngine.Rigidbody2D[]
|
||||
struct Rigidbody2DU5BU5D_tC196E4DEEA396B4A08BFAE8A94A45FD14403C9CF;
|
||||
// UnityEngine.Collider2D
|
||||
struct Collider2D_t6A17BA7734600EF3F26588E9ED903617D5B8EB52;
|
||||
// UnityEngine.Object
|
||||
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C;
|
||||
// System.Void
|
||||
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915;
|
||||
|
||||
IL2CPP_EXTERN_C RuntimeClass* Collider2D_t6A17BA7734600EF3F26588E9ED903617D5B8EB52_il2cpp_TypeInfo_var;
|
||||
IL2CPP_EXTERN_C RuntimeClass* List_1_tCD5F926D25FC8BFAF39E4BE6F879C1FA11501C76_il2cpp_TypeInfo_var;
|
||||
IL2CPP_EXTERN_C RuntimeClass* Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var;
|
||||
IL2CPP_EXTERN_C RuntimeClass* Physics2D_t64C0DB5246067DAC2E83A52558A0AC68AF3BE94D_il2cpp_TypeInfo_var;
|
||||
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m18046D64FD3FA546A46227B43826992EE5D5F434_RuntimeMethod_var;
|
||||
|
||||
|
||||
IL2CPP_EXTERN_C_BEGIN
|
||||
IL2CPP_EXTERN_C_END
|
||||
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic push
|
||||
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
||||
#pragma clang diagnostic ignored "-Wunused-variable"
|
||||
#endif
|
||||
|
||||
// <Module>
|
||||
struct U3CModuleU3E_t0643977EA9107777E6F2E30DC5F5326A467F5F6B
|
||||
{
|
||||
};
|
||||
|
||||
// System.Collections.Generic.List`1<UnityEngine.Rigidbody2D>
|
||||
struct List_1_tCD5F926D25FC8BFAF39E4BE6F879C1FA11501C76 : public RuntimeObject
|
||||
{
|
||||
// T[] System.Collections.Generic.List`1::_items
|
||||
Rigidbody2DU5BU5D_tC196E4DEEA396B4A08BFAE8A94A45FD14403C9CF* ____items_1;
|
||||
// System.Int32 System.Collections.Generic.List`1::_size
|
||||
int32_t ____size_2;
|
||||
// System.Int32 System.Collections.Generic.List`1::_version
|
||||
int32_t ____version_3;
|
||||
// System.Object System.Collections.Generic.List`1::_syncRoot
|
||||
RuntimeObject* ____syncRoot_4;
|
||||
};
|
||||
|
||||
// UnityEngine.Physics2D
|
||||
struct Physics2D_t64C0DB5246067DAC2E83A52558A0AC68AF3BE94D : public RuntimeObject
|
||||
{
|
||||
};
|
||||
|
||||
// System.ValueType
|
||||
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F : public RuntimeObject
|
||||
{
|
||||
};
|
||||
// Native definition for P/Invoke marshalling of System.ValueType
|
||||
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_pinvoke
|
||||
{
|
||||
};
|
||||
// Native definition for COM marshalling of System.ValueType
|
||||
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_com
|
||||
{
|
||||
};
|
||||
|
||||
// System.Int32
|
||||
struct Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C
|
||||
{
|
||||
// System.Int32 System.Int32::m_value
|
||||
int32_t ___m_value_0;
|
||||
};
|
||||
|
||||
// System.IntPtr
|
||||
struct IntPtr_t
|
||||
{
|
||||
// System.Void* System.IntPtr::m_value
|
||||
void* ___m_value_0;
|
||||
};
|
||||
|
||||
// System.Single
|
||||
struct Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C
|
||||
{
|
||||
// System.Single System.Single::m_value
|
||||
float ___m_value_0;
|
||||
};
|
||||
|
||||
// UnityEngine.Vector2
|
||||
struct Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7
|
||||
{
|
||||
// System.Single UnityEngine.Vector2::x
|
||||
float ___x_0;
|
||||
// System.Single UnityEngine.Vector2::y
|
||||
float ___y_1;
|
||||
};
|
||||
|
||||
// System.Void
|
||||
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915
|
||||
{
|
||||
union
|
||||
{
|
||||
struct
|
||||
{
|
||||
};
|
||||
uint8_t Void_t4861ACF8F4594C3437BB48B6E56783494B843915__padding[1];
|
||||
};
|
||||
};
|
||||
|
||||
// UnityEngine.Object
|
||||
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C : public RuntimeObject
|
||||
{
|
||||
// System.IntPtr UnityEngine.Object::m_CachedPtr
|
||||
intptr_t ___m_CachedPtr_0;
|
||||
};
|
||||
// Native definition for P/Invoke marshalling of UnityEngine.Object
|
||||
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_pinvoke
|
||||
{
|
||||
intptr_t ___m_CachedPtr_0;
|
||||
};
|
||||
// Native definition for COM marshalling of UnityEngine.Object
|
||||
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_com
|
||||
{
|
||||
intptr_t ___m_CachedPtr_0;
|
||||
};
|
||||
|
||||
// UnityEngine.RaycastHit2D
|
||||
struct RaycastHit2D_t3EAAA06E6603C6BC61AC1291DD881C5C1E23BDFA
|
||||
{
|
||||
// UnityEngine.Vector2 UnityEngine.RaycastHit2D::m_Centroid
|
||||
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_Centroid_0;
|
||||
// UnityEngine.Vector2 UnityEngine.RaycastHit2D::m_Point
|
||||
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_Point_1;
|
||||
// UnityEngine.Vector2 UnityEngine.RaycastHit2D::m_Normal
|
||||
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_Normal_2;
|
||||
// System.Single UnityEngine.RaycastHit2D::m_Distance
|
||||
float ___m_Distance_3;
|
||||
// System.Single UnityEngine.RaycastHit2D::m_Fraction
|
||||
float ___m_Fraction_4;
|
||||
// System.Int32 UnityEngine.RaycastHit2D::m_Collider
|
||||
int32_t ___m_Collider_5;
|
||||
};
|
||||
|
||||
// UnityEngine.Component
|
||||
struct Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3 : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
|
||||
{
|
||||
};
|
||||
|
||||
// UnityEngine.Behaviour
|
||||
struct Behaviour_t01970CFBBA658497AE30F311C447DB0440BAB7FA : public Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3
|
||||
{
|
||||
};
|
||||
|
||||
// UnityEngine.Rigidbody2D
|
||||
struct Rigidbody2D_tBEBE9523CF4448544085AF46BF7E10AA499F320F : public Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3
|
||||
{
|
||||
};
|
||||
|
||||
// UnityEngine.Collider2D
|
||||
struct Collider2D_t6A17BA7734600EF3F26588E9ED903617D5B8EB52 : public Behaviour_t01970CFBBA658497AE30F311C447DB0440BAB7FA
|
||||
{
|
||||
};
|
||||
|
||||
// <Module>
|
||||
|
||||
// <Module>
|
||||
|
||||
// System.Collections.Generic.List`1<UnityEngine.Rigidbody2D>
|
||||
struct List_1_tCD5F926D25FC8BFAF39E4BE6F879C1FA11501C76_StaticFields
|
||||
{
|
||||
// T[] System.Collections.Generic.List`1::s_emptyArray
|
||||
Rigidbody2DU5BU5D_tC196E4DEEA396B4A08BFAE8A94A45FD14403C9CF* ___s_emptyArray_5;
|
||||
};
|
||||
|
||||
// System.Collections.Generic.List`1<UnityEngine.Rigidbody2D>
|
||||
|
||||
// UnityEngine.Physics2D
|
||||
struct Physics2D_t64C0DB5246067DAC2E83A52558A0AC68AF3BE94D_StaticFields
|
||||
{
|
||||
// System.Collections.Generic.List`1<UnityEngine.Rigidbody2D> UnityEngine.Physics2D::m_LastDisabledRigidbody2D
|
||||
List_1_tCD5F926D25FC8BFAF39E4BE6F879C1FA11501C76* ___m_LastDisabledRigidbody2D_0;
|
||||
};
|
||||
|
||||
// UnityEngine.Physics2D
|
||||
|
||||
// System.Int32
|
||||
|
||||
// System.Int32
|
||||
|
||||
// System.Single
|
||||
|
||||
// System.Single
|
||||
|
||||
// UnityEngine.Vector2
|
||||
struct Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_StaticFields
|
||||
{
|
||||
// UnityEngine.Vector2 UnityEngine.Vector2::zeroVector
|
||||
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___zeroVector_2;
|
||||
// UnityEngine.Vector2 UnityEngine.Vector2::oneVector
|
||||
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___oneVector_3;
|
||||
// UnityEngine.Vector2 UnityEngine.Vector2::upVector
|
||||
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___upVector_4;
|
||||
// UnityEngine.Vector2 UnityEngine.Vector2::downVector
|
||||
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___downVector_5;
|
||||
// UnityEngine.Vector2 UnityEngine.Vector2::leftVector
|
||||
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___leftVector_6;
|
||||
// UnityEngine.Vector2 UnityEngine.Vector2::rightVector
|
||||
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___rightVector_7;
|
||||
// UnityEngine.Vector2 UnityEngine.Vector2::positiveInfinityVector
|
||||
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___positiveInfinityVector_8;
|
||||
// UnityEngine.Vector2 UnityEngine.Vector2::negativeInfinityVector
|
||||
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___negativeInfinityVector_9;
|
||||
};
|
||||
|
||||
// UnityEngine.Vector2
|
||||
|
||||
// System.Void
|
||||
|
||||
// System.Void
|
||||
|
||||
// UnityEngine.Object
|
||||
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_StaticFields
|
||||
{
|
||||
// System.Int32 UnityEngine.Object::OffsetOfInstanceIDInCPlusPlusObject
|
||||
int32_t ___OffsetOfInstanceIDInCPlusPlusObject_1;
|
||||
};
|
||||
|
||||
// UnityEngine.Object
|
||||
|
||||
// UnityEngine.RaycastHit2D
|
||||
|
||||
// UnityEngine.RaycastHit2D
|
||||
|
||||
// UnityEngine.Rigidbody2D
|
||||
|
||||
// UnityEngine.Rigidbody2D
|
||||
|
||||
// UnityEngine.Collider2D
|
||||
|
||||
// UnityEngine.Collider2D
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic pop
|
||||
#endif
|
||||
|
||||
|
||||
// System.Void System.Collections.Generic.List`1<System.Object>::.ctor()
|
||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
|
||||
|
||||
// System.Void System.Collections.Generic.List`1<UnityEngine.Rigidbody2D>::.ctor()
|
||||
inline void List_1__ctor_m18046D64FD3FA546A46227B43826992EE5D5F434 (List_1_tCD5F926D25FC8BFAF39E4BE6F879C1FA11501C76* __this, const RuntimeMethod* method)
|
||||
{
|
||||
(( void (*) (List_1_tCD5F926D25FC8BFAF39E4BE6F879C1FA11501C76*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
|
||||
}
|
||||
// UnityEngine.Vector2 UnityEngine.RaycastHit2D::get_point()
|
||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 RaycastHit2D_get_point_mB35E988E9E04328EFE926228A18334326721A36B (RaycastHit2D_t3EAAA06E6603C6BC61AC1291DD881C5C1E23BDFA* __this, const RuntimeMethod* method) ;
|
||||
// UnityEngine.Vector2 UnityEngine.RaycastHit2D::get_normal()
|
||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 RaycastHit2D_get_normal_m75F1EBDE347BACEB5A6A6AA72543C740806AB5F2 (RaycastHit2D_t3EAAA06E6603C6BC61AC1291DD881C5C1E23BDFA* __this, const RuntimeMethod* method) ;
|
||||
// System.Single UnityEngine.RaycastHit2D::get_distance()
|
||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float RaycastHit2D_get_distance_mD0FE1482E2768CF587AFB65488459697EAB64613 (RaycastHit2D_t3EAAA06E6603C6BC61AC1291DD881C5C1E23BDFA* __this, const RuntimeMethod* method) ;
|
||||
// UnityEngine.Object UnityEngine.Object::FindObjectFromInstanceID(System.Int32)
|
||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* Object_FindObjectFromInstanceID_m977F314530A838CAB5497C8F5D0D8DA134B92E0C (int32_t ___0_instanceID, const RuntimeMethod* method) ;
|
||||
// UnityEngine.Collider2D UnityEngine.RaycastHit2D::get_collider()
|
||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Collider2D_t6A17BA7734600EF3F26588E9ED903617D5B8EB52* RaycastHit2D_get_collider_mB56DFCD16B708852EEBDBB490BC8665DBF7487FD (RaycastHit2D_t3EAAA06E6603C6BC61AC1291DD881C5C1E23BDFA* __this, const RuntimeMethod* method) ;
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic push
|
||||
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
||||
#pragma clang diagnostic ignored "-Wunused-variable"
|
||||
#endif
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic pop
|
||||
#endif
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic push
|
||||
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
||||
#pragma clang diagnostic ignored "-Wunused-variable"
|
||||
#endif
|
||||
// System.Void UnityEngine.Physics2D::.cctor()
|
||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Physics2D__cctor_m7B7A8EEEE744CE27534A7ADF12F31A4E376544E8 (const RuntimeMethod* method)
|
||||
{
|
||||
static bool s_Il2CppMethodInitialized;
|
||||
if (!s_Il2CppMethodInitialized)
|
||||
{
|
||||
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m18046D64FD3FA546A46227B43826992EE5D5F434_RuntimeMethod_var);
|
||||
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tCD5F926D25FC8BFAF39E4BE6F879C1FA11501C76_il2cpp_TypeInfo_var);
|
||||
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Physics2D_t64C0DB5246067DAC2E83A52558A0AC68AF3BE94D_il2cpp_TypeInfo_var);
|
||||
s_Il2CppMethodInitialized = true;
|
||||
}
|
||||
{
|
||||
List_1_tCD5F926D25FC8BFAF39E4BE6F879C1FA11501C76* L_0 = (List_1_tCD5F926D25FC8BFAF39E4BE6F879C1FA11501C76*)il2cpp_codegen_object_new(List_1_tCD5F926D25FC8BFAF39E4BE6F879C1FA11501C76_il2cpp_TypeInfo_var);
|
||||
NullCheck(L_0);
|
||||
List_1__ctor_m18046D64FD3FA546A46227B43826992EE5D5F434(L_0, List_1__ctor_m18046D64FD3FA546A46227B43826992EE5D5F434_RuntimeMethod_var);
|
||||
((Physics2D_t64C0DB5246067DAC2E83A52558A0AC68AF3BE94D_StaticFields*)il2cpp_codegen_static_fields_for(Physics2D_t64C0DB5246067DAC2E83A52558A0AC68AF3BE94D_il2cpp_TypeInfo_var))->___m_LastDisabledRigidbody2D_0 = L_0;
|
||||
Il2CppCodeGenWriteBarrier((void**)(&((Physics2D_t64C0DB5246067DAC2E83A52558A0AC68AF3BE94D_StaticFields*)il2cpp_codegen_static_fields_for(Physics2D_t64C0DB5246067DAC2E83A52558A0AC68AF3BE94D_il2cpp_TypeInfo_var))->___m_LastDisabledRigidbody2D_0), (void*)L_0);
|
||||
return;
|
||||
}
|
||||
}
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic pop
|
||||
#endif
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic push
|
||||
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
||||
#pragma clang diagnostic ignored "-Wunused-variable"
|
||||
#endif
|
||||
// UnityEngine.Vector2 UnityEngine.RaycastHit2D::get_point()
|
||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 RaycastHit2D_get_point_mB35E988E9E04328EFE926228A18334326721A36B (RaycastHit2D_t3EAAA06E6603C6BC61AC1291DD881C5C1E23BDFA* __this, const RuntimeMethod* method)
|
||||
{
|
||||
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
|
||||
memset((&V_0), 0, sizeof(V_0));
|
||||
{
|
||||
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___m_Point_1;
|
||||
V_0 = L_0;
|
||||
goto IL_000a;
|
||||
}
|
||||
|
||||
IL_000a:
|
||||
{
|
||||
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1 = V_0;
|
||||
return L_1;
|
||||
}
|
||||
}
|
||||
IL2CPP_EXTERN_C Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 RaycastHit2D_get_point_mB35E988E9E04328EFE926228A18334326721A36B_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
||||
{
|
||||
RaycastHit2D_t3EAAA06E6603C6BC61AC1291DD881C5C1E23BDFA* _thisAdjusted;
|
||||
int32_t _offset = 1;
|
||||
_thisAdjusted = reinterpret_cast<RaycastHit2D_t3EAAA06E6603C6BC61AC1291DD881C5C1E23BDFA*>(__this + _offset);
|
||||
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 _returnValue;
|
||||
_returnValue = RaycastHit2D_get_point_mB35E988E9E04328EFE926228A18334326721A36B(_thisAdjusted, method);
|
||||
return _returnValue;
|
||||
}
|
||||
// UnityEngine.Vector2 UnityEngine.RaycastHit2D::get_normal()
|
||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 RaycastHit2D_get_normal_m75F1EBDE347BACEB5A6A6AA72543C740806AB5F2 (RaycastHit2D_t3EAAA06E6603C6BC61AC1291DD881C5C1E23BDFA* __this, const RuntimeMethod* method)
|
||||
{
|
||||
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
|
||||
memset((&V_0), 0, sizeof(V_0));
|
||||
{
|
||||
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___m_Normal_2;
|
||||
V_0 = L_0;
|
||||
goto IL_000a;
|
||||
}
|
||||
|
||||
IL_000a:
|
||||
{
|
||||
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1 = V_0;
|
||||
return L_1;
|
||||
}
|
||||
}
|
||||
IL2CPP_EXTERN_C Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 RaycastHit2D_get_normal_m75F1EBDE347BACEB5A6A6AA72543C740806AB5F2_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
||||
{
|
||||
RaycastHit2D_t3EAAA06E6603C6BC61AC1291DD881C5C1E23BDFA* _thisAdjusted;
|
||||
int32_t _offset = 1;
|
||||
_thisAdjusted = reinterpret_cast<RaycastHit2D_t3EAAA06E6603C6BC61AC1291DD881C5C1E23BDFA*>(__this + _offset);
|
||||
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 _returnValue;
|
||||
_returnValue = RaycastHit2D_get_normal_m75F1EBDE347BACEB5A6A6AA72543C740806AB5F2(_thisAdjusted, method);
|
||||
return _returnValue;
|
||||
}
|
||||
// System.Single UnityEngine.RaycastHit2D::get_distance()
|
||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float RaycastHit2D_get_distance_mD0FE1482E2768CF587AFB65488459697EAB64613 (RaycastHit2D_t3EAAA06E6603C6BC61AC1291DD881C5C1E23BDFA* __this, const RuntimeMethod* method)
|
||||
{
|
||||
float V_0 = 0.0f;
|
||||
{
|
||||
float L_0 = __this->___m_Distance_3;
|
||||
V_0 = L_0;
|
||||
goto IL_000a;
|
||||
}
|
||||
|
||||
IL_000a:
|
||||
{
|
||||
float L_1 = V_0;
|
||||
return L_1;
|
||||
}
|
||||
}
|
||||
IL2CPP_EXTERN_C float RaycastHit2D_get_distance_mD0FE1482E2768CF587AFB65488459697EAB64613_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
||||
{
|
||||
RaycastHit2D_t3EAAA06E6603C6BC61AC1291DD881C5C1E23BDFA* _thisAdjusted;
|
||||
int32_t _offset = 1;
|
||||
_thisAdjusted = reinterpret_cast<RaycastHit2D_t3EAAA06E6603C6BC61AC1291DD881C5C1E23BDFA*>(__this + _offset);
|
||||
float _returnValue;
|
||||
_returnValue = RaycastHit2D_get_distance_mD0FE1482E2768CF587AFB65488459697EAB64613(_thisAdjusted, method);
|
||||
return _returnValue;
|
||||
}
|
||||
// UnityEngine.Collider2D UnityEngine.RaycastHit2D::get_collider()
|
||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Collider2D_t6A17BA7734600EF3F26588E9ED903617D5B8EB52* RaycastHit2D_get_collider_mB56DFCD16B708852EEBDBB490BC8665DBF7487FD (RaycastHit2D_t3EAAA06E6603C6BC61AC1291DD881C5C1E23BDFA* __this, const RuntimeMethod* method)
|
||||
{
|
||||
static bool s_Il2CppMethodInitialized;
|
||||
if (!s_Il2CppMethodInitialized)
|
||||
{
|
||||
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Collider2D_t6A17BA7734600EF3F26588E9ED903617D5B8EB52_il2cpp_TypeInfo_var);
|
||||
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
||||
s_Il2CppMethodInitialized = true;
|
||||
}
|
||||
Collider2D_t6A17BA7734600EF3F26588E9ED903617D5B8EB52* V_0 = NULL;
|
||||
{
|
||||
int32_t L_0 = __this->___m_Collider_5;
|
||||
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
||||
Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* L_1;
|
||||
L_1 = Object_FindObjectFromInstanceID_m977F314530A838CAB5497C8F5D0D8DA134B92E0C(L_0, NULL);
|
||||
V_0 = ((Collider2D_t6A17BA7734600EF3F26588E9ED903617D5B8EB52*)IsInstClass((RuntimeObject*)L_1, Collider2D_t6A17BA7734600EF3F26588E9ED903617D5B8EB52_il2cpp_TypeInfo_var));
|
||||
goto IL_0014;
|
||||
}
|
||||
|
||||
IL_0014:
|
||||
{
|
||||
Collider2D_t6A17BA7734600EF3F26588E9ED903617D5B8EB52* L_2 = V_0;
|
||||
return L_2;
|
||||
}
|
||||
}
|
||||
IL2CPP_EXTERN_C Collider2D_t6A17BA7734600EF3F26588E9ED903617D5B8EB52* RaycastHit2D_get_collider_mB56DFCD16B708852EEBDBB490BC8665DBF7487FD_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
||||
{
|
||||
RaycastHit2D_t3EAAA06E6603C6BC61AC1291DD881C5C1E23BDFA* _thisAdjusted;
|
||||
int32_t _offset = 1;
|
||||
_thisAdjusted = reinterpret_cast<RaycastHit2D_t3EAAA06E6603C6BC61AC1291DD881C5C1E23BDFA*>(__this + _offset);
|
||||
Collider2D_t6A17BA7734600EF3F26588E9ED903617D5B8EB52* _returnValue;
|
||||
_returnValue = RaycastHit2D_get_collider_mB56DFCD16B708852EEBDBB490BC8665DBF7487FD(_thisAdjusted, method);
|
||||
return _returnValue;
|
||||
}
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic pop
|
||||
#endif
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic push
|
||||
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
||||
#pragma clang diagnostic ignored "-Wunused-variable"
|
||||
#endif
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic pop
|
||||
#endif
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic push
|
||||
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
||||
#pragma clang diagnostic ignored "-Wunused-variable"
|
||||
#endif
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic pop
|
||||
#endif
|
||||
@@ -0,0 +1,72 @@
|
||||
#include "pch-c.h"
|
||||
#ifndef _MSC_VER
|
||||
# include <alloca.h>
|
||||
#else
|
||||
# include <malloc.h>
|
||||
#endif
|
||||
|
||||
|
||||
#include "codegen/il2cpp-codegen-metadata.h"
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// 0x00000001 System.Void UnityEngine.Physics2D::.cctor()
|
||||
extern void Physics2D__cctor_m7B7A8EEEE744CE27534A7ADF12F31A4E376544E8 (void);
|
||||
// 0x00000002 UnityEngine.Vector2 UnityEngine.RaycastHit2D::get_point()
|
||||
extern void RaycastHit2D_get_point_mB35E988E9E04328EFE926228A18334326721A36B (void);
|
||||
// 0x00000003 UnityEngine.Vector2 UnityEngine.RaycastHit2D::get_normal()
|
||||
extern void RaycastHit2D_get_normal_m75F1EBDE347BACEB5A6A6AA72543C740806AB5F2 (void);
|
||||
// 0x00000004 System.Single UnityEngine.RaycastHit2D::get_distance()
|
||||
extern void RaycastHit2D_get_distance_mD0FE1482E2768CF587AFB65488459697EAB64613 (void);
|
||||
// 0x00000005 UnityEngine.Collider2D UnityEngine.RaycastHit2D::get_collider()
|
||||
extern void RaycastHit2D_get_collider_mB56DFCD16B708852EEBDBB490BC8665DBF7487FD (void);
|
||||
static Il2CppMethodPointer s_methodPointers[5] =
|
||||
{
|
||||
Physics2D__cctor_m7B7A8EEEE744CE27534A7ADF12F31A4E376544E8,
|
||||
RaycastHit2D_get_point_mB35E988E9E04328EFE926228A18334326721A36B,
|
||||
RaycastHit2D_get_normal_m75F1EBDE347BACEB5A6A6AA72543C740806AB5F2,
|
||||
RaycastHit2D_get_distance_mD0FE1482E2768CF587AFB65488459697EAB64613,
|
||||
RaycastHit2D_get_collider_mB56DFCD16B708852EEBDBB490BC8665DBF7487FD,
|
||||
};
|
||||
extern void RaycastHit2D_get_point_mB35E988E9E04328EFE926228A18334326721A36B_AdjustorThunk (void);
|
||||
extern void RaycastHit2D_get_normal_m75F1EBDE347BACEB5A6A6AA72543C740806AB5F2_AdjustorThunk (void);
|
||||
extern void RaycastHit2D_get_distance_mD0FE1482E2768CF587AFB65488459697EAB64613_AdjustorThunk (void);
|
||||
extern void RaycastHit2D_get_collider_mB56DFCD16B708852EEBDBB490BC8665DBF7487FD_AdjustorThunk (void);
|
||||
static Il2CppTokenAdjustorThunkPair s_adjustorThunks[4] =
|
||||
{
|
||||
{ 0x06000002, RaycastHit2D_get_point_mB35E988E9E04328EFE926228A18334326721A36B_AdjustorThunk },
|
||||
{ 0x06000003, RaycastHit2D_get_normal_m75F1EBDE347BACEB5A6A6AA72543C740806AB5F2_AdjustorThunk },
|
||||
{ 0x06000004, RaycastHit2D_get_distance_mD0FE1482E2768CF587AFB65488459697EAB64613_AdjustorThunk },
|
||||
{ 0x06000005, RaycastHit2D_get_collider_mB56DFCD16B708852EEBDBB490BC8665DBF7487FD_AdjustorThunk },
|
||||
};
|
||||
static const int32_t s_InvokerIndices[5] =
|
||||
{
|
||||
5220,
|
||||
3386,
|
||||
3386,
|
||||
3348,
|
||||
3311,
|
||||
};
|
||||
IL2CPP_EXTERN_C const Il2CppCodeGenModule g_UnityEngine_Physics2DModule_CodeGenModule;
|
||||
const Il2CppCodeGenModule g_UnityEngine_Physics2DModule_CodeGenModule =
|
||||
{
|
||||
"UnityEngine.Physics2DModule.dll",
|
||||
5,
|
||||
s_methodPointers,
|
||||
4,
|
||||
s_adjustorThunks,
|
||||
s_InvokerIndices,
|
||||
0,
|
||||
NULL,
|
||||
0,
|
||||
NULL,
|
||||
0,
|
||||
NULL,
|
||||
NULL,
|
||||
NULL, // module initializer,
|
||||
NULL,
|
||||
NULL,
|
||||
NULL,
|
||||
};
|
||||
File diff suppressed because it is too large
Load Diff
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user