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

107 lines
3.8 KiB
C#

using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace Steamworks
{
// Token: 0x02001227 RID: 4647
[Token(Token = "0x2001227")]
[Serializable]
[StructLayout(0, Size = 4)]
public struct SteamInventoryResult_t : IEquatable<SteamInventoryResult_t>, IComparable<SteamInventoryResult_t>
{
// Token: 0x06007061 RID: 28769 RVA: 0x00177CA4 File Offset: 0x00175EA4
[Token(Token = "0x6007061")]
[Address(RVA = "0x2DB0", Offset = "0x21B0", VA = "0x180002DB0")]
public SteamInventoryResult_t(int value)
{
}
// Token: 0x06007062 RID: 28770 RVA: 0x0000220F File Offset: 0x0000040F
[Token(Token = "0x6007062")]
[Address(RVA = "0x1D3A0", Offset = "0x1C7A0", VA = "0x18001D3A0", Slot = "3")]
public override string ToString()
{
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
}
// Token: 0x06007063 RID: 28771 RVA: 0x00177CB4 File Offset: 0x00175EB4
[Token(Token = "0x6007063")]
[Address(RVA = "0x366270", Offset = "0x365670", VA = "0x180366270", Slot = "0")]
public override bool Equals(object other)
{
if (other != 0 && other != 0)
{
return (ref this) == "{il2cpp field on {'constant15' (constant value of type Cpp2IL.Core.Analysis.ResultModels.LocalPointer)}, offset 0x0}";
}
}
// Token: 0x06007064 RID: 28772 RVA: 0x0000220F File Offset: 0x0000040F
[Token(Token = "0x6007064")]
[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: 0x06007065 RID: 28773 RVA: 0x00177CD4 File Offset: 0x00175ED4
[Token(Token = "0x6007065")]
[Address(RVA = "0x559420", Offset = "0x557E20", VA = "0x180559420")]
public static bool operator ==(SteamInventoryResult_t x, SteamInventoryResult_t y)
{
return x == y;
}
// Token: 0x06007066 RID: 28774 RVA: 0x00177CE8 File Offset: 0x00175EE8
[Token(Token = "0x6007066")]
[Address(RVA = "0x2A907A0", Offset = "0x2A8F1A0", VA = "0x182A907A0")]
public static bool operator !=(SteamInventoryResult_t x, SteamInventoryResult_t y)
{
int steamInventoryResult = y.m_SteamInventoryResult;
return x.m_SteamInventoryResult != steamInventoryResult;
}
// Token: 0x06007067 RID: 28775 RVA: 0x0000220F File Offset: 0x0000040F
[Token(Token = "0x6007067")]
[Address(RVA = "0x522C80", Offset = "0x521680", VA = "0x180522C80")]
public static explicit operator SteamInventoryResult_t(int value)
{
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
}
// Token: 0x06007068 RID: 28776 RVA: 0x00177D08 File Offset: 0x00175F08
[Token(Token = "0x6007068")]
[Address(RVA = "0x522C80", Offset = "0x521680", VA = "0x180522C80")]
public static explicit operator int(SteamInventoryResult_t that)
{
return that.m_SteamInventoryResult;
}
// Token: 0x06007069 RID: 28777 RVA: 0x00177D1C File Offset: 0x00175F1C
[Token(Token = "0x6007069")]
[Address(RVA = "0xD730", Offset = "0xCB30", VA = "0x18000D730", Slot = "4")]
public bool Equals(SteamInventoryResult_t other)
{
bool flag;
return flag;
}
// Token: 0x0600706A RID: 28778 RVA: 0x0000220F File Offset: 0x0000040F
[Token(Token = "0x600706A")]
[Address(RVA = "0x2447A0", Offset = "0x243BA0", VA = "0x1802447A0", Slot = "5")]
public int CompareTo(SteamInventoryResult_t other)
{
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
}
// Token: 0x040053A8 RID: 21416
[Token(Token = "0x40053A8")]
public static readonly SteamInventoryResult_t Invalid;
// Token: 0x040053A9 RID: 21417
[global::Cpp2IlInjected.FieldOffset(Offset = "0x0")]
[Token(Token = "0x40053A9")]
public int m_SteamInventoryResult;
}
}