This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 additions and 0 deletions
@@ -0,0 +1,23 @@
using System;
using Cpp2IlInjected;
using Unity.Collections;
namespace UnityEngine.XR.ARSubsystems
{
// Token: 0x02000050 RID: 80
[Token(Token = "0x2000050")]
public abstract class TrackingSubsystem<TTrackable, TSubsystemDescriptor> : XRSubsystem<TSubsystemDescriptor> where TTrackable : struct, ITrackable where TSubsystemDescriptor : class, ISubsystemDescriptor
{
// Token: 0x060001EA RID: 490
[Token(Token = "0x60001EA")]
[Address(Slot = "12")]
public abstract TrackableChanges<TTrackable> GetChanges(Allocator allocator);
// Token: 0x060001EB RID: 491 RVA: 0x00002126 File Offset: 0x00000326
[Token(Token = "0x60001EB")]
[Address(RVA = "0x118F680", Offset = "0x118E480", VA = "0x18118F680")]
protected TrackingSubsystem()
{
}
}
}