Files
2026-04-08 23:40:05 +02:00

102 lines
3.5 KiB
C#

using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace Steamworks
{
// Token: 0x02001233 RID: 4659
[Token(Token = "0x2001233")]
[Serializable]
[StructLayout(0, Size = 4)]
public struct RemotePlaySessionID_t : IEquatable<RemotePlaySessionID_t>, IComparable<RemotePlaySessionID_t>
{
// Token: 0x060070E1 RID: 28897 RVA: 0x00178298 File Offset: 0x00176498
[Token(Token = "0x60070E1")]
[Address(RVA = "0x2DB0", Offset = "0x21B0", VA = "0x180002DB0")]
public RemotePlaySessionID_t(uint value)
{
}
// Token: 0x060070E2 RID: 28898 RVA: 0x0000220F File Offset: 0x0000040F
[Token(Token = "0x60070E2")]
[Address(RVA = "0x242940", Offset = "0x241D40", VA = "0x180242940", Slot = "3")]
public override string ToString()
{
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
}
// Token: 0x060070E3 RID: 28899 RVA: 0x001782A8 File Offset: 0x001764A8
[Token(Token = "0x60070E3")]
[Address(RVA = "0x35FD60", Offset = "0x35F160", VA = "0x18035FD60", Slot = "0")]
public override bool Equals(object other)
{
if (other != 0 && other != 0)
{
return (ref this) == "{il2cpp field on {'constant9' (constant value of type Cpp2IL.Core.Analysis.ResultModels.LocalPointer)}, offset 0x0}";
}
}
// Token: 0x060070E4 RID: 28900 RVA: 0x0000220F File Offset: 0x0000040F
[Token(Token = "0x60070E4")]
[Address(RVA = "0x18100", Offset = "0x17500", VA = "0x180018100", Slot = "2")]
public override int GetHashCode()
{
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
}
// Token: 0x060070E5 RID: 28901 RVA: 0x001782C8 File Offset: 0x001764C8
[Token(Token = "0x60070E5")]
[Address(RVA = "0x559420", Offset = "0x557E20", VA = "0x180559420")]
public static bool operator ==(RemotePlaySessionID_t x, RemotePlaySessionID_t y)
{
return x == y;
}
// Token: 0x060070E6 RID: 28902 RVA: 0x001782DC File Offset: 0x001764DC
[Token(Token = "0x60070E6")]
[Address(RVA = "0x559430", Offset = "0x557E30", VA = "0x180559430")]
public static bool operator !=(RemotePlaySessionID_t x, RemotePlaySessionID_t y)
{
return x != y;
}
// Token: 0x060070E7 RID: 28903 RVA: 0x0000220F File Offset: 0x0000040F
[Token(Token = "0x60070E7")]
[Address(RVA = "0x522C80", Offset = "0x521680", VA = "0x180522C80")]
public static explicit operator RemotePlaySessionID_t(uint value)
{
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
}
// Token: 0x060070E8 RID: 28904 RVA: 0x001782F0 File Offset: 0x001764F0
[Token(Token = "0x60070E8")]
[Address(RVA = "0x522C80", Offset = "0x521680", VA = "0x180522C80")]
public static explicit operator uint(RemotePlaySessionID_t that)
{
return that.m_RemotePlaySessionID;
}
// Token: 0x060070E9 RID: 28905 RVA: 0x00178304 File Offset: 0x00176504
[Token(Token = "0x60070E9")]
[Address(RVA = "0xD730", Offset = "0xCB30", VA = "0x18000D730", Slot = "4")]
public bool Equals(RemotePlaySessionID_t other)
{
bool flag;
return flag;
}
// Token: 0x060070EA RID: 28906 RVA: 0x0000220F File Offset: 0x0000040F
[Token(Token = "0x60070EA")]
[Address(RVA = "0x2428B0", Offset = "0x241CB0", VA = "0x1802428B0", Slot = "5")]
public int CompareTo(RemotePlaySessionID_t other)
{
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
}
// Token: 0x040053BD RID: 21437
[global::Cpp2IlInjected.FieldOffset(Offset = "0x0")]
[Token(Token = "0x40053BD")]
public uint m_RemotePlaySessionID;
}
}