This commit is contained in:
niko
2026-04-11 22:19:20 +02:00
parent 45b857ff11
commit 8fc35183db
17034 changed files with 2863552 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;
}
}
}