1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-14 14:27:25 +08:00
osu-lazer/osu.Game/Online/API/Requests/Responses/APIMenuContent.cs
2024-03-26 20:21:12 +08:00

39 lines
1.1 KiB
C#

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using System.Linq;
using Newtonsoft.Json;
namespace osu.Game.Online.API.Requests.Responses
{
public class APIMenuContent : IEquatable<APIMenuContent>
{
/// <summary>
/// Images which should be displayed in rotation.
/// </summary>
[JsonProperty(@"images")]
public APIMenuImage[] Images { get; init; } = Array.Empty<APIMenuImage>();
public bool Equals(APIMenuContent? other)
{
if (ReferenceEquals(null, other)) return false;
if (ReferenceEquals(this, other)) return true;
return Images.SequenceEqual(other.Images);
}
public override bool Equals(object? other) => other is APIMenuContent content && Equals(content);
public override int GetHashCode()
{
var hash = new HashCode();
foreach (var image in Images)
hash.Add(image.GetHashCode());
return hash.ToHashCode();
}
}
}