75 lines
3.2 KiB
C#
75 lines
3.2 KiB
C#
using System;
|
|
using Il2CppInterop.Common.Attributes;
|
|
using Il2CppInterop.Runtime;
|
|
using UnityEngine;
|
|
|
|
// Token: 0x02000387 RID: 903
|
|
public class SimpleMove : MonoBehaviour
|
|
{
|
|
// Token: 0x0600771E RID: 30494 RVA: 0x001E4F30 File Offset: 0x001E3130
|
|
[CallerCount(0)]
|
|
[CachedScanResults(RefRangeStart = 0, RefRangeEnd = 0, XrefRangeStart = 616279, XrefRangeEnd = 616293, 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: 0x0600771F RID: 30495 RVA: 0x001E4F74 File Offset: 0x001E3174
|
|
[CallerCount(8)]
|
|
[CachedScanResults(RefRangeStart = 616294, RefRangeEnd = 616302, XrefRangeStart = 616293, XrefRangeEnd = 616294, 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: 0x06007720 RID: 30496 RVA: 0x001E4FC0 File Offset: 0x001E31C0
|
|
// 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, 100672249);
|
|
SimpleMove.NativeMethodInfoPtr__ctor_Public_Void_0 = IL2CPP.GetIl2CppMethodByToken(Il2CppClassPointerStore<SimpleMove>.NativeClassPtr, 100672250);
|
|
}
|
|
|
|
// Token: 0x06007721 RID: 30497 RVA: 0x0000351C File Offset: 0x0000171C
|
|
public SimpleMove(IntPtr pointer)
|
|
: base(pointer)
|
|
{
|
|
}
|
|
|
|
// Token: 0x170028E9 RID: 10473
|
|
// (get) Token: 0x06007722 RID: 30498 RVA: 0x001E502C File Offset: 0x001E322C
|
|
// (set) Token: 0x06007723 RID: 30499 RVA: 0x001E5054 File Offset: 0x001E3254
|
|
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: 0x04004F54 RID: 20308
|
|
private static readonly IntPtr NativeFieldInfoPtr_AngularSpeed;
|
|
|
|
// Token: 0x04004F55 RID: 20309
|
|
private static readonly IntPtr NativeMethodInfoPtr_Update_Private_Void_0;
|
|
|
|
// Token: 0x04004F56 RID: 20310
|
|
private static readonly IntPtr NativeMethodInfoPtr__ctor_Public_Void_0;
|
|
}
|