66 lines
2.0 KiB
C#
66 lines
2.0 KiB
C#
using System;
|
|
using Cpp2IlInjected;
|
|
using UnityEngine.Bindings;
|
|
using UnityEngine.Scripting;
|
|
|
|
namespace UnityEngine.Yoga
|
|
{
|
|
// Token: 0x02000005 RID: 5
|
|
[Token(Token = "0x2000005")]
|
|
[NativeHeader("Modules/UIElements/YogaNative.bindings.h")]
|
|
internal static class Native
|
|
{
|
|
// Token: 0x06000009 RID: 9 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000009")]
|
|
[Address(RVA = "0x73C570", Offset = "0x73B370", VA = "0x18073C570")]
|
|
[RequiredByNativeCode]
|
|
public static void YGNodeMeasureInvoke(YogaNode node, float width, YogaMeasureMode widthMode, float height, YogaMeasureMode heightMode, IntPtr returnValueAddress)
|
|
{
|
|
}
|
|
|
|
// Token: 0x0600000A RID: 10 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x600000A")]
|
|
[Address(RVA = "0x73C3B0", Offset = "0x73B1B0", VA = "0x18073C3B0")]
|
|
[RequiredByNativeCode]
|
|
public static void YGNodeBaselineInvoke(YogaNode node, float width, float height, IntPtr returnValueAddress)
|
|
{
|
|
}
|
|
|
|
// Token: 0x0600000B RID: 11 RVA: 0x00002054 File Offset: 0x00000254
|
|
[Token(Token = "0x600000B")]
|
|
[Address(RVA = "0x73C4B0", Offset = "0x73B2B0", VA = "0x18073C4B0")]
|
|
[FreeFunction]
|
|
public static float YGNodeLayoutGetLeft(IntPtr node)
|
|
{
|
|
return 0f;
|
|
}
|
|
|
|
// Token: 0x0600000C RID: 12 RVA: 0x0000206C File Offset: 0x0000026C
|
|
[Token(Token = "0x600000C")]
|
|
[Address(RVA = "0x73C4F0", Offset = "0x73B2F0", VA = "0x18073C4F0")]
|
|
[FreeFunction]
|
|
public static float YGNodeLayoutGetTop(IntPtr node)
|
|
{
|
|
return 0f;
|
|
}
|
|
|
|
// Token: 0x0600000D RID: 13 RVA: 0x00002084 File Offset: 0x00000284
|
|
[Token(Token = "0x600000D")]
|
|
[Address(RVA = "0x73C530", Offset = "0x73B330", VA = "0x18073C530")]
|
|
[FreeFunction]
|
|
public static float YGNodeLayoutGetWidth(IntPtr node)
|
|
{
|
|
return 0f;
|
|
}
|
|
|
|
// Token: 0x0600000E RID: 14 RVA: 0x0000209C File Offset: 0x0000029C
|
|
[Token(Token = "0x600000E")]
|
|
[Address(RVA = "0x73C470", Offset = "0x73B270", VA = "0x18073C470")]
|
|
[FreeFunction]
|
|
public static float YGNodeLayoutGetHeight(IntPtr node)
|
|
{
|
|
return 0f;
|
|
}
|
|
}
|
|
}
|