blob: 4edc20df29d2a181ffd6df157e4978ba77e30f9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
using System;
namespace Steamworks;
[Serializable]
public struct UGCHandle_t : IEquatable<UGCHandle_t>, IComparable<UGCHandle_t>
{
public static readonly UGCHandle_t Invalid = new UGCHandle_t(ulong.MaxValue);
public ulong m_UGCHandle;
public UGCHandle_t(ulong value)
{
m_UGCHandle = value;
}
public override string ToString()
{
return m_UGCHandle.ToString();
}
public override bool Equals(object other)
{
if (other is UGCHandle_t)
{
return this == (UGCHandle_t)other;
}
return false;
}
public override int GetHashCode()
{
return m_UGCHandle.GetHashCode();
}
public static bool operator ==(UGCHandle_t x, UGCHandle_t y)
{
return x.m_UGCHandle == y.m_UGCHandle;
}
public static bool operator !=(UGCHandle_t x, UGCHandle_t y)
{
return !(x == y);
}
public static explicit operator UGCHandle_t(ulong value)
{
return new UGCHandle_t(value);
}
public static explicit operator ulong(UGCHandle_t that)
{
return that.m_UGCHandle;
}
public bool Equals(UGCHandle_t other)
{
return m_UGCHandle == other.m_UGCHandle;
}
public int CompareTo(UGCHandle_t other)
{
return m_UGCHandle.CompareTo(other.m_UGCHandle);
}
}
|