Add v1.0.3.1
This commit is contained in:
74
Interop/Assembly-CSharp/SimpleMove.cs
Normal file
74
Interop/Assembly-CSharp/SimpleMove.cs
Normal file
@@ -0,0 +1,74 @@
|
||||
using System;
|
||||
using Il2CppInterop.Common.Attributes;
|
||||
using Il2CppInterop.Runtime;
|
||||
using UnityEngine;
|
||||
|
||||
// Token: 0x0200032F RID: 815
|
||||
public class SimpleMove : MonoBehaviour
|
||||
{
|
||||
// Token: 0x06006ECB RID: 28363 RVA: 0x001C21E8 File Offset: 0x001C03E8
|
||||
[CallerCount(0)]
|
||||
[CachedScanResults(RefRangeStart = 0, RefRangeEnd = 0, XrefRangeStart = 583978, XrefRangeEnd = 583992, MetadataInitTokenRva = 0L, MetadataInitFlagRva = 0L)]
|
||||
public unsafe void Update()
|
||||
{
|
||||
IL2CPP.Il2CppObjectBaseToPtrNotNull(this);
|
||||
IntPtr* ptr = null;
|
||||
IntPtr intPtr2;
|
||||
IntPtr intPtr = IL2CPP.il2cpp_runtime_invoke(SimpleMove.NativeMethodInfoPtr_Update_Private_Void_0, IL2CPP.Il2CppObjectBaseToPtrNotNull(this), (void**)ptr, ref intPtr2);
|
||||
Il2CppException.RaiseExceptionIfNecessary(intPtr2);
|
||||
}
|
||||
|
||||
// Token: 0x06006ECC RID: 28364 RVA: 0x001C222C File Offset: 0x001C042C
|
||||
[CallerCount(8)]
|
||||
[CachedScanResults(RefRangeStart = 583993, RefRangeEnd = 584001, XrefRangeStart = 583992, XrefRangeEnd = 583993, MetadataInitTokenRva = 0L, MetadataInitFlagRva = 0L)]
|
||||
public unsafe SimpleMove()
|
||||
: this(IL2CPP.il2cpp_object_new(Il2CppClassPointerStore<SimpleMove>.NativeClassPtr))
|
||||
{
|
||||
IntPtr* ptr = null;
|
||||
IntPtr intPtr2;
|
||||
IntPtr intPtr = IL2CPP.il2cpp_runtime_invoke(SimpleMove.NativeMethodInfoPtr__ctor_Public_Void_0, IL2CPP.Il2CppObjectBaseToPtrNotNull(this), (void**)ptr, ref intPtr2);
|
||||
Il2CppException.RaiseExceptionIfNecessary(intPtr2);
|
||||
}
|
||||
|
||||
// Token: 0x06006ECD RID: 28365 RVA: 0x001C2278 File Offset: 0x001C0478
|
||||
// Note: this type is marked as 'beforefieldinit'.
|
||||
static SimpleMove()
|
||||
{
|
||||
Il2CppClassPointerStore<SimpleMove>.NativeClassPtr = IL2CPP.GetIl2CppClass("Assembly-CSharp.dll", "", "SimpleMove");
|
||||
IL2CPP.il2cpp_runtime_class_init(Il2CppClassPointerStore<SimpleMove>.NativeClassPtr);
|
||||
SimpleMove.NativeFieldInfoPtr_AngularSpeed = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<SimpleMove>.NativeClassPtr, "AngularSpeed");
|
||||
SimpleMove.NativeMethodInfoPtr_Update_Private_Void_0 = IL2CPP.GetIl2CppMethodByToken(Il2CppClassPointerStore<SimpleMove>.NativeClassPtr, 100671536);
|
||||
SimpleMove.NativeMethodInfoPtr__ctor_Public_Void_0 = IL2CPP.GetIl2CppMethodByToken(Il2CppClassPointerStore<SimpleMove>.NativeClassPtr, 100671537);
|
||||
}
|
||||
|
||||
// Token: 0x06006ECE RID: 28366 RVA: 0x0000351C File Offset: 0x0000171C
|
||||
public SimpleMove(IntPtr pointer)
|
||||
: base(pointer)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x1700264E RID: 9806
|
||||
// (get) Token: 0x06006ECF RID: 28367 RVA: 0x001C22E4 File Offset: 0x001C04E4
|
||||
// (set) Token: 0x06006ED0 RID: 28368 RVA: 0x001C230C File Offset: 0x001C050C
|
||||
public unsafe float AngularSpeed
|
||||
{
|
||||
get
|
||||
{
|
||||
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(SimpleMove.NativeFieldInfoPtr_AngularSpeed);
|
||||
return *intPtr;
|
||||
}
|
||||
set
|
||||
{
|
||||
*(IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(SimpleMove.NativeFieldInfoPtr_AngularSpeed)) = value;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x040049AB RID: 18859
|
||||
private static readonly IntPtr NativeFieldInfoPtr_AngularSpeed;
|
||||
|
||||
// Token: 0x040049AC RID: 18860
|
||||
private static readonly IntPtr NativeMethodInfoPtr_Update_Private_Void_0;
|
||||
|
||||
// Token: 0x040049AD RID: 18861
|
||||
private static readonly IntPtr NativeMethodInfoPtr__ctor_Public_Void_0;
|
||||
}
|
||||
Reference in New Issue
Block a user