scripts
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
using System;
|
||||
using UnityEngine;
|
||||
|
||||
namespace RecRoom
|
||||
{
|
||||
// Token: 0x02001114 RID: 4372
|
||||
public static class KCGKNMAPEDK
|
||||
{
|
||||
// Token: 0x06025722 RID: 153378 RVA: 0x00A67458 File Offset: 0x00A65658
|
||||
public static T NJFAHHNIJAB<T>(this Component NCOHNOPAIOG) where T : Component
|
||||
{
|
||||
Transform parent = NCOHNOPAIOG.transform.parent;
|
||||
if (parent == null)
|
||||
{
|
||||
return (T)((object)null);
|
||||
}
|
||||
return parent.GetComponentInParent<T>();
|
||||
}
|
||||
|
||||
// Token: 0x06025723 RID: 153379 RVA: 0x00A6748C File Offset: 0x00A6568C
|
||||
public static T[] PCELGIKECOH<T>(this Component NCOHNOPAIOG) where T : Component
|
||||
{
|
||||
Transform parent = NCOHNOPAIOG.transform.parent;
|
||||
if (parent == null)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
return parent.GetComponentsInParent<T>();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user