Files
NobetaSource/Interop/Assembly-CSharp/MakeSomeNoise.cs
2023-09-06 22:19:13 +02:00

161 lines
6.3 KiB
C#

using System;
using Il2CppInterop.Common.Attributes;
using Il2CppInterop.Runtime;
using UnityEngine;
// Token: 0x020003AB RID: 939
public class MakeSomeNoise : MonoBehaviour
{
// Token: 0x06007906 RID: 30982 RVA: 0x001EC154 File Offset: 0x001EA354
[CallerCount(0)]
[CachedScanResults(RefRangeStart = 0, RefRangeEnd = 0, XrefRangeStart = 617387, XrefRangeEnd = 617388, MetadataInitTokenRva = 0L, MetadataInitFlagRva = 0L)]
public unsafe MakeSomeNoise()
: this(IL2CPP.il2cpp_object_new(Il2CppClassPointerStore<MakeSomeNoise>.NativeClassPtr))
{
IntPtr* ptr = null;
IntPtr intPtr2;
IntPtr intPtr = IL2CPP.il2cpp_runtime_invoke(MakeSomeNoise.NativeMethodInfoPtr__ctor_Public_Void_0, IL2CPP.Il2CppObjectBaseToPtrNotNull(this), (void**)ptr, ref intPtr2);
Il2CppException.RaiseExceptionIfNecessary(intPtr2);
}
// Token: 0x06007907 RID: 30983 RVA: 0x001EC1A0 File Offset: 0x001EA3A0
// Note: this type is marked as 'beforefieldinit'.
static MakeSomeNoise()
{
Il2CppClassPointerStore<MakeSomeNoise>.NativeClassPtr = IL2CPP.GetIl2CppClass("Assembly-CSharp.dll", "", "MakeSomeNoise");
IL2CPP.il2cpp_runtime_class_init(Il2CppClassPointerStore<MakeSomeNoise>.NativeClassPtr);
MakeSomeNoise.NativeFieldInfoPtr_power = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<MakeSomeNoise>.NativeClassPtr, "power");
MakeSomeNoise.NativeFieldInfoPtr_scale = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<MakeSomeNoise>.NativeClassPtr, "scale");
MakeSomeNoise.NativeFieldInfoPtr_timeScale = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<MakeSomeNoise>.NativeClassPtr, "timeScale");
MakeSomeNoise.NativeFieldInfoPtr_xOffset = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<MakeSomeNoise>.NativeClassPtr, "xOffset");
MakeSomeNoise.NativeFieldInfoPtr_yOffset = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<MakeSomeNoise>.NativeClassPtr, "yOffset");
MakeSomeNoise.NativeFieldInfoPtr_mf = IL2CPP.GetIl2CppField(Il2CppClassPointerStore<MakeSomeNoise>.NativeClassPtr, "mf");
MakeSomeNoise.NativeMethodInfoPtr__ctor_Public_Void_0 = IL2CPP.GetIl2CppMethodByToken(Il2CppClassPointerStore<MakeSomeNoise>.NativeClassPtr, 100672391);
}
// Token: 0x06007908 RID: 30984 RVA: 0x0000351C File Offset: 0x0000171C
public MakeSomeNoise(IntPtr pointer)
: base(pointer)
{
}
// Token: 0x1700297F RID: 10623
// (get) Token: 0x06007909 RID: 30985 RVA: 0x001EC25C File Offset: 0x001EA45C
// (set) Token: 0x0600790A RID: 30986 RVA: 0x001EC284 File Offset: 0x001EA484
public unsafe float power
{
get
{
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(MakeSomeNoise.NativeFieldInfoPtr_power);
return *intPtr;
}
set
{
*(IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(MakeSomeNoise.NativeFieldInfoPtr_power)) = value;
}
}
// Token: 0x17002980 RID: 10624
// (get) Token: 0x0600790B RID: 30987 RVA: 0x001EC2A8 File Offset: 0x001EA4A8
// (set) Token: 0x0600790C RID: 30988 RVA: 0x001EC2D0 File Offset: 0x001EA4D0
public unsafe float scale
{
get
{
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(MakeSomeNoise.NativeFieldInfoPtr_scale);
return *intPtr;
}
set
{
*(IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(MakeSomeNoise.NativeFieldInfoPtr_scale)) = value;
}
}
// Token: 0x17002981 RID: 10625
// (get) Token: 0x0600790D RID: 30989 RVA: 0x001EC2F4 File Offset: 0x001EA4F4
// (set) Token: 0x0600790E RID: 30990 RVA: 0x001EC31C File Offset: 0x001EA51C
public unsafe float timeScale
{
get
{
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(MakeSomeNoise.NativeFieldInfoPtr_timeScale);
return *intPtr;
}
set
{
*(IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(MakeSomeNoise.NativeFieldInfoPtr_timeScale)) = value;
}
}
// Token: 0x17002982 RID: 10626
// (get) Token: 0x0600790F RID: 30991 RVA: 0x001EC340 File Offset: 0x001EA540
// (set) Token: 0x06007910 RID: 30992 RVA: 0x001EC368 File Offset: 0x001EA568
public unsafe float xOffset
{
get
{
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(MakeSomeNoise.NativeFieldInfoPtr_xOffset);
return *intPtr;
}
set
{
*(IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(MakeSomeNoise.NativeFieldInfoPtr_xOffset)) = value;
}
}
// Token: 0x17002983 RID: 10627
// (get) Token: 0x06007911 RID: 30993 RVA: 0x001EC38C File Offset: 0x001EA58C
// (set) Token: 0x06007912 RID: 30994 RVA: 0x001EC3B4 File Offset: 0x001EA5B4
public unsafe float yOffset
{
get
{
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(MakeSomeNoise.NativeFieldInfoPtr_yOffset);
return *intPtr;
}
set
{
*(IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(MakeSomeNoise.NativeFieldInfoPtr_yOffset)) = value;
}
}
// Token: 0x17002984 RID: 10628
// (get) Token: 0x06007913 RID: 30995 RVA: 0x001EC3D8 File Offset: 0x001EA5D8
// (set) Token: 0x06007914 RID: 30996 RVA: 0x001EC40C File Offset: 0x001EA60C
public unsafe MeshFilter mf
{
get
{
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this) + (IntPtr)IL2CPP.il2cpp_field_get_offset(MakeSomeNoise.NativeFieldInfoPtr_mf);
IntPtr intPtr2 = *intPtr;
return (intPtr2 != 0) ? new MeshFilter(intPtr2) : null;
}
set
{
IntPtr intPtr = IL2CPP.Il2CppObjectBaseToPtrNotNull(this);
IL2CPP.il2cpp_gc_wbarrier_set_field(intPtr, intPtr + (IntPtr)IL2CPP.il2cpp_field_get_offset(MakeSomeNoise.NativeFieldInfoPtr_mf), IL2CPP.Il2CppObjectBaseToPtr(value));
}
}
// Token: 0x0400506F RID: 20591
private static readonly IntPtr NativeFieldInfoPtr_power;
// Token: 0x04005070 RID: 20592
private static readonly IntPtr NativeFieldInfoPtr_scale;
// Token: 0x04005071 RID: 20593
private static readonly IntPtr NativeFieldInfoPtr_timeScale;
// Token: 0x04005072 RID: 20594
private static readonly IntPtr NativeFieldInfoPtr_xOffset;
// Token: 0x04005073 RID: 20595
private static readonly IntPtr NativeFieldInfoPtr_yOffset;
// Token: 0x04005074 RID: 20596
private static readonly IntPtr NativeFieldInfoPtr_mf;
// Token: 0x04005075 RID: 20597
private static readonly IntPtr NativeMethodInfoPtr__ctor_Public_Void_0;
}