Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

47 lines
1.3 KiB
C#

using System;
using Cpp2IlInjected;
using UnityEngine.Bindings;
using UnityEngine.Scripting;
namespace UnityEngine.Playables
{
// Token: 0x02000295 RID: 661
[Token(Token = "0x2000295")]
[RequiredByNativeCode]
public struct PlayableOutput : IEquatable<PlayableOutput>
{
// Token: 0x06001081 RID: 4225 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001081")]
[Address(RVA = "0x814BE0", Offset = "0x813BE0", VA = "0x180814BE0")]
[VisibleToOtherModules]
internal PlayableOutput(PlayableOutputHandle handle)
{
}
// Token: 0x06001082 RID: 4226 RVA: 0x0000A788 File Offset: 0x00008988
[Token(Token = "0x6001082")]
[Address(RVA = "0xE71830", Offset = "0xE70830", VA = "0x180E71830", Slot = "5")]
public PlayableOutputHandle GetHandle()
{
return default(PlayableOutputHandle);
}
// Token: 0x06001083 RID: 4227 RVA: 0x0000A7A0 File Offset: 0x000089A0
[Token(Token = "0x6001083")]
[Address(RVA = "0x2EEC680", Offset = "0x2EEB680", VA = "0x182EEC680", Slot = "4")]
public bool Equals(PlayableOutput other)
{
return default(bool);
}
// Token: 0x04000869 RID: 2153
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000869")]
private PlayableOutputHandle m_Handle;
// Token: 0x0400086A RID: 2154
[Token(Token = "0x400086A")]
private static readonly PlayableOutput m_NullPlayableOutput;
}
}