// This file is provided under The MIT License as part of Steamworks.NET. // Copyright (c) 2013-2019 Riley Labrecque // Please see the included LICENSE.txt for additional information. // This file is automatically generated. // Changes to this file will be reverted when you update Steamworks.NET #if UNITY_ANDROID || UNITY_IOS || UNITY_TIZEN || UNITY_TVOS || UNITY_WEBGL || UNITY_WSA || UNITY_PS4 || UNITY_WII || UNITY_XBOXONE || UNITY_SWITCH #define DISABLESTEAMWORKS #endif #if !DISABLESTEAMWORKS using System.Runtime.InteropServices; using IntPtr = System.IntPtr; namespace Steamworks { [System.Serializable] public struct ManifestId_t : System.IEquatable, System.IComparable { public static readonly ManifestId_t Invalid = new ManifestId_t(0x0); public ulong m_ManifestId; public ManifestId_t(ulong value) { m_ManifestId = value; } public override string ToString() { return m_ManifestId.ToString(); } public override bool Equals(object other) { return other is ManifestId_t && this == (ManifestId_t)other; } public override int GetHashCode() { return m_ManifestId.GetHashCode(); } public static bool operator ==(ManifestId_t x, ManifestId_t y) { return x.m_ManifestId == y.m_ManifestId; } public static bool operator !=(ManifestId_t x, ManifestId_t y) { return !(x == y); } public static explicit operator ManifestId_t(ulong value) { return new ManifestId_t(value); } public static explicit operator ulong(ManifestId_t that) { return that.m_ManifestId; } public bool Equals(ManifestId_t other) { return m_ManifestId == other.m_ManifestId; } public int CompareTo(ManifestId_t other) { return m_ManifestId.CompareTo(other.m_ManifestId); } } } #endif // !DISABLESTEAMWORKS