Files
2023-09-06 22:19:13 +02:00

74 lines
3.2 KiB
C#

using System;
using Il2CppInterop.Common.Attributes;
using Il2CppInterop.Runtime;
// Token: 0x020001FC RID: 508
public class OpenGameTip : SceneEvent
{
// Token: 0x06004F33 RID: 20275 RVA: 0x0013BD88 File Offset: 0x00139F88
[CallerCount(0)]
[CachedScanResults(RefRangeStart = 0, RefRangeEnd = 0, XrefRangeStart = 572724, XrefRangeEnd = 572730, MetadataInitTokenRva = 0L, MetadataInitFlagRva = 0L)]
public unsafe override void OpenEvent()
{
IL2CPP.Il2CppObjectBaseToPtrNotNull(this);
IntPtr* ptr = null;
IntPtr intPtr2;
IntPtr intPtr = IL2CPP.il2cpp_runtime_invoke(IL2CPP.il2cpp_object_get_virtual_method(IL2CPP.Il2CppObjectBaseToPtr(this), OpenGameTip.NativeMethodInfoPtr_OpenEvent_Public_Virtual_Void_0), IL2CPP.Il2CppObjectBaseToPtrNotNull(this), (void**)ptr, ref intPtr2);
Il2CppException.RaiseExceptionIfNecessary(intPtr2);
}
// Token: 0x06004F34 RID: 20276 RVA: 0x0013BDD8 File Offset: 0x00139FD8
[CallerCount(5)]
[CachedScanResults(RefRangeStart = 569315, RefRangeEnd = 569320, XrefRangeStart = 569315, XrefRangeEnd = 569320, MetadataInitTokenRva = 0L, MetadataInitFlagRva = 0L)]
public unsafe OpenGameTip()
: this(IL2CPP.il2cpp_object_new(Il2CppClassPointerStore<OpenGameTip>.NativeClassPtr))
{
IntPtr* ptr = null;
IntPtr intPtr2;
IntPtr intPtr = IL2CPP.il2cpp_runtime_invoke(OpenGameTip.NativeMethodInfoPtr__ctor_Public_Void_0, IL2CPP.Il2CppObjectBaseToPtrNotNull(this), (void**)ptr, ref intPtr2);
Il2CppException.RaiseExceptionIfNecessary(intPtr2);
}
// Token: 0x06004F35 RID: 20277 RVA: 0x0013BE24 File Offset: 0x0013A024
// Note: this type is marked as 'beforefieldinit'.
static OpenGameTip()
{
Il2CppClassPointerStore<OpenGameTip>.NativeClassPtr = IL2CPP.GetIl2CppClass("Assembly-CSharp.dll", "", "OpenGameTip");
IL2CPP.il2cpp_runtime_class_init(Il2CppClassPointerStore<OpenGameTip>.NativeClassPtr);
OpenGameTip.NativeFieldInfoPtr_style = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<OpenGameTip>.NativeClassPtr, "style");
OpenGameTip.NativeMethodInfoPtr_OpenEvent_Public_Virtual_Void_0 = IL2CPP.GetIl2CppMethodByToken(Il2CppClassPointerStore<OpenGameTip>.NativeClassPtr, 100668616);
OpenGameTip.NativeMethodInfoPtr__ctor_Public_Void_0 = IL2CPP.GetIl2CppMethodByToken(Il2CppClassPointerStore<OpenGameTip>.NativeClassPtr, 100668617);
}
// Token: 0x06004F36 RID: 20278 RVA: 0x0012A4E8 File Offset: 0x001286E8
public OpenGameTip(IntPtr pointer)
: base(pointer)
{
}
// Token: 0x17001C47 RID: 7239
// (get) Token: 0x06004F37 RID: 20279 RVA: 0x0013BE90 File Offset: 0x0013A090
// (set) Token: 0x06004F38 RID: 20280 RVA: 0x0013BEB8 File Offset: 0x0013A0B8
public unsafe GameTipStyle style
{
get
{
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(OpenGameTip.NativeFieldInfoPtr_style);
return *intPtr;
}
set
{
*(IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(OpenGameTip.NativeFieldInfoPtr_style)) = value;
}
}
// Token: 0x0400345F RID: 13407
private static readonly IntPtr NativeFieldInfoPtr_style;
// Token: 0x04003460 RID: 13408
private static readonly IntPtr NativeMethodInfoPtr_OpenEvent_Public_Virtual_Void_0;
// Token: 0x04003461 RID: 13409
private static readonly IntPtr NativeMethodInfoPtr__ctor_Public_Void_0;
}