This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 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 = "0x1CC5F20", Offset = "0x1CC4F20", VA = "0x181CC5F20")]
protected TrackingSubsystem()
{
}
}
}