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

102 lines
3.4 KiB
C#

using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace Steamworks
{
// Token: 0x02001235 RID: 4661
[Token(Token = "0x2001235")]
[Serializable]
[StructLayout(0, Size = 4)]
public struct AccountID_t : IEquatable<AccountID_t>, IComparable<AccountID_t>
{
// Token: 0x060070F6 RID: 28918 RVA: 0x001783AC File Offset: 0x001765AC
[Token(Token = "0x60070F6")]
[Address(RVA = "0x2DB0", Offset = "0x21B0", VA = "0x180002DB0")]
public AccountID_t(uint value)
{
}
// Token: 0x060070F7 RID: 28919 RVA: 0x0000220F File Offset: 0x0000040F
[Token(Token = "0x60070F7")]
[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: 0x060070F8 RID: 28920 RVA: 0x001783BC File Offset: 0x001765BC
[Token(Token = "0x60070F8")]
[Address(RVA = "0x2428C0", Offset = "0x241CC0", VA = "0x1802428C0", 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: 0x060070F9 RID: 28921 RVA: 0x0000220F File Offset: 0x0000040F
[Token(Token = "0x60070F9")]
[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: 0x060070FA RID: 28922 RVA: 0x001783DC File Offset: 0x001765DC
[Token(Token = "0x60070FA")]
[Address(RVA = "0x559420", Offset = "0x557E20", VA = "0x180559420")]
public static bool operator ==(AccountID_t x, AccountID_t y)
{
return x == y;
}
// Token: 0x060070FB RID: 28923 RVA: 0x001783F0 File Offset: 0x001765F0
[Token(Token = "0x60070FB")]
[Address(RVA = "0x559430", Offset = "0x557E30", VA = "0x180559430")]
public static bool operator !=(AccountID_t x, AccountID_t y)
{
return x != y;
}
// Token: 0x060070FC RID: 28924 RVA: 0x0000220F File Offset: 0x0000040F
[Token(Token = "0x60070FC")]
[Address(RVA = "0x522C80", Offset = "0x521680", VA = "0x180522C80")]
public static explicit operator AccountID_t(uint value)
{
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
}
// Token: 0x060070FD RID: 28925 RVA: 0x00178404 File Offset: 0x00176604
[Token(Token = "0x60070FD")]
[Address(RVA = "0x522C80", Offset = "0x521680", VA = "0x180522C80")]
public static explicit operator uint(AccountID_t that)
{
return that.m_AccountID;
}
// Token: 0x060070FE RID: 28926 RVA: 0x00178418 File Offset: 0x00176618
[Token(Token = "0x60070FE")]
[Address(RVA = "0xD730", Offset = "0xCB30", VA = "0x18000D730", Slot = "4")]
public bool Equals(AccountID_t other)
{
bool flag;
return flag;
}
// Token: 0x060070FF RID: 28927 RVA: 0x0000220F File Offset: 0x0000040F
[Token(Token = "0x60070FF")]
[Address(RVA = "0x2428B0", Offset = "0x241CB0", VA = "0x1802428B0", Slot = "5")]
public int CompareTo(AccountID_t other)
{
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
}
// Token: 0x040053C0 RID: 21440
[global::Cpp2IlInjected.FieldOffset(Offset = "0x0")]
[Token(Token = "0x40053C0")]
public uint m_AccountID;
}
}