51 lines
1.9 KiB
C#
51 lines
1.9 KiB
C#
// Decompiled with JetBrains decompiler
|
|
// Type: Terraria.IO.ResourcePackVersion
|
|
// Assembly: Terraria, Version=1.4.0.5, Culture=neutral, PublicKeyToken=null
|
|
// MVID: 67F9E73E-0A81-4937-A22C-5515CD405A83
|
|
// Assembly location: C:\Users\mikeyisbaeyt\Downloads\depotdownloader-2.4.5\depots\105601\6707058\Terraria.exe
|
|
|
|
using Newtonsoft.Json;
|
|
using System;
|
|
using System.Diagnostics;
|
|
|
|
namespace Terraria.IO
|
|
{
|
|
[DebuggerDisplay("Version {Major}.{Minor}")]
|
|
public struct ResourcePackVersion : IComparable, IComparable<ResourcePackVersion>
|
|
{
|
|
[JsonProperty("major")]
|
|
public int Major { get; private set; }
|
|
|
|
[JsonProperty("minor")]
|
|
public int Minor { get; private set; }
|
|
|
|
public int CompareTo(object obj)
|
|
{
|
|
if (obj == null)
|
|
return 1;
|
|
if (!(obj is ResourcePackVersion other))
|
|
throw new ArgumentException("A RatingInformation object is required for comparison.", nameof (obj));
|
|
return this.CompareTo(other);
|
|
}
|
|
|
|
public int CompareTo(ResourcePackVersion other)
|
|
{
|
|
int num = this.Major.CompareTo(other.Major);
|
|
return num != 0 ? num : this.Minor.CompareTo(other.Minor);
|
|
}
|
|
|
|
public static bool operator ==(ResourcePackVersion lhs, ResourcePackVersion rhs) => lhs.CompareTo(rhs) == 0;
|
|
|
|
public static bool operator !=(ResourcePackVersion lhs, ResourcePackVersion rhs) => !(lhs == rhs);
|
|
|
|
public static bool operator <(ResourcePackVersion lhs, ResourcePackVersion rhs) => lhs.CompareTo(rhs) < 0;
|
|
|
|
public static bool operator >(ResourcePackVersion lhs, ResourcePackVersion rhs) => lhs.CompareTo(rhs) > 0;
|
|
|
|
public override bool Equals(object obj) => obj is ResourcePackVersion other && this.CompareTo(other) == 0;
|
|
|
|
public override int GetHashCode() => ((long) this.Major << 32 | (long) this.Minor).GetHashCode();
|
|
|
|
public string GetFormattedVersion() => this.Major.ToString() + "." + (object) this.Minor;
|
|
}
|
|
}
|