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,27 @@
using System;
using Cpp2IlInjected;
using UnityEngine.SceneManagement;
namespace StansAssets.Foundation.Extensions
{
// Token: 0x0200004C RID: 76
[Token(Token = "0x2000039")]
public static class SceneExtensions
{
// Token: 0x06000112 RID: 274 RVA: 0x00002080 File Offset: 0x00000280
[Token(Token = "0x60000CD")]
[Address(RVA = "0x160EB50", Offset = "0x160D950", VA = "0x18160EB50")]
public static T GetComponentInChildren<T>(this Scene scene) where T : class
{
return null;
}
// Token: 0x06000113 RID: 275 RVA: 0x00002080 File Offset: 0x00000280
[Token(Token = "0x60000CE")]
[Address(RVA = "0x160EB50", Offset = "0x160D950", VA = "0x18160EB50")]
public static T GetComponent<T>(this Scene scene) where T : class
{
return null;
}
}
}