Files
Jan2021-Cpp2Il-Dump/Assembly-CSharp/RecRoom/Tools/MoveableWhiteboard.cs
T
2026-04-08 23:40:05 +02:00

45 lines
1.2 KiB
C#

using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
using UnityEngine;
namespace RecRoom.Tools
{
// Token: 0x02002551 RID: 9553
[Token(Token = "0x2002551")]
[StructLayout(3)]
public class MoveableWhiteboard : MonoBehaviour
{
// Token: 0x060107BB RID: 67515 RVA: 0x003DF24C File Offset: 0x003DD44C
[Token(Token = "0x60107BB")]
[Address(RVA = "0x12C4560", Offset = "0x12C2F60", VA = "0x1812C4560")]
private void Awake()
{
Tool component = base.GetComponent<Tool>();
this.tool = component;
int num = 0;
if (component != num)
{
this.tool.KinematicOnReset = true;
this.tool.KinematicOnSleep = true;
this.tool.AlwaysPhysicalPickupOffCenter = true;
this.tool.IgnorePickupDirection = true;
}
}
// Token: 0x060107BC RID: 67516 RVA: 0x003DF2AC File Offset: 0x003DD4AC
[Token(Token = "0x60107BC")]
[Address(RVA = "0x3C1210", Offset = "0x3BFC10", VA = "0x1803C1210")]
public MoveableWhiteboard()
{
}
// Token: 0x0400AFA5 RID: 44965
[global::Cpp2IlInjected.FieldOffset(Offset = "0x18")]
[Token(Token = "0x400AFA5")]
[SerializeField]
[DDPIINEJFMD(JIBDPHMGEGO.Self, false, false)]
private Tool tool;
}
}