63 lines
2.5 KiB
C#
63 lines
2.5 KiB
C#
using System;
|
|
using Il2CppInterop.Common.Attributes;
|
|
using Il2CppInterop.Runtime;
|
|
using UnityEngine;
|
|
|
|
namespace RootMotion
|
|
{
|
|
// Token: 0x020003B0 RID: 944
|
|
public class Comments : MonoBehaviour
|
|
{
|
|
// Token: 0x0600760B RID: 30219 RVA: 0x001E17B8 File Offset: 0x001DF9B8
|
|
[CallerCount(63)]
|
|
[CachedScanResults(RefRangeStart = 165985, RefRangeEnd = 166048, XrefRangeStart = 165985, XrefRangeEnd = 166048, MetadataInitTokenRva = 0L, MetadataInitFlagRva = 0L)]
|
|
public unsafe Comments()
|
|
: this(IL2CPP.il2cpp_object_new(Il2CppClassPointerStore<Comments>.NativeClassPtr))
|
|
{
|
|
IntPtr* ptr = null;
|
|
IntPtr intPtr2;
|
|
IntPtr intPtr = IL2CPP.il2cpp_runtime_invoke(Comments.NativeMethodInfoPtr__ctor_Public_Void_0, IL2CPP.Il2CppObjectBaseToPtrNotNull(this), (void**)ptr, ref intPtr2);
|
|
Il2CppException.RaiseExceptionIfNecessary(intPtr2);
|
|
}
|
|
|
|
// Token: 0x0600760C RID: 30220 RVA: 0x001E1804 File Offset: 0x001DFA04
|
|
// Note: this type is marked as 'beforefieldinit'.
|
|
static Comments()
|
|
{
|
|
Il2CppClassPointerStore<Comments>.NativeClassPtr = IL2CPP.GetIl2CppClass("Assembly-CSharp.dll", "RootMotion", "Comments");
|
|
IL2CPP.il2cpp_runtime_class_init(Il2CppClassPointerStore<Comments>.NativeClassPtr);
|
|
Comments.NativeFieldInfoPtr_text = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<Comments>.NativeClassPtr, "text");
|
|
Comments.NativeMethodInfoPtr__ctor_Public_Void_0 = IL2CPP.GetIl2CppMethodByToken(Il2CppClassPointerStore<Comments>.NativeClassPtr, 100672190);
|
|
}
|
|
|
|
// Token: 0x0600760D RID: 30221 RVA: 0x0000351C File Offset: 0x0000171C
|
|
public Comments(IntPtr pointer)
|
|
: base(pointer)
|
|
{
|
|
}
|
|
|
|
// Token: 0x17002865 RID: 10341
|
|
// (get) Token: 0x0600760E RID: 30222 RVA: 0x001E185C File Offset: 0x001DFA5C
|
|
// (set) Token: 0x0600760F RID: 30223 RVA: 0x001E1885 File Offset: 0x001DFA85
|
|
public unsafe string text
|
|
{
|
|
get
|
|
{
|
|
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(Comments.NativeFieldInfoPtr_text);
|
|
return IL2CPP.Il2CppStringToManaged(*intPtr);
|
|
}
|
|
set
|
|
{
|
|
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this);
|
|
IL2CPP.il2cpp_gc_wbarrier_set_field(intPtr, intPtr + (IntPtr)IL2CPP.il2cpp_field_get_offset(Comments.NativeFieldInfoPtr_text), IL2CPP.ManagedStringToIl2Cpp(value));
|
|
}
|
|
}
|
|
|
|
// Token: 0x04004F39 RID: 20281
|
|
private static readonly IntPtr NativeFieldInfoPtr_text;
|
|
|
|
// Token: 0x04004F3A RID: 20282
|
|
private static readonly IntPtr NativeMethodInfoPtr__ctor_Public_Void_0;
|
|
}
|
|
}
|