mirror of
https://github.com/ppy/osu.git
synced 2024-11-17 15:12:54 +08:00
29 lines
843 B
C#
29 lines
843 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics.CodeAnalysis;
|
|
using System.Linq;
|
|
using osu.Game.Online.API;
|
|
|
|
namespace osu.Game.Online.Spectator
|
|
{
|
|
[Serializable]
|
|
public class SpectatorState : IEquatable<SpectatorState>
|
|
{
|
|
public int? BeatmapID { get; set; }
|
|
|
|
[NotNull]
|
|
public IEnumerable<APIMod> Mods { get; set; } = Enumerable.Empty<APIMod>();
|
|
|
|
public SpectatorState(int? beatmapId = null, IEnumerable<APIMod> mods = null)
|
|
{
|
|
BeatmapID = beatmapId;
|
|
if (mods != null)
|
|
Mods = mods;
|
|
}
|
|
|
|
public bool Equals(SpectatorState other) => this.BeatmapID == other?.BeatmapID && this.Mods.SequenceEqual(other?.Mods);
|
|
|
|
public override string ToString() => $"Beatmap:{BeatmapID} Mods:{string.Join(',', Mods)}";
|
|
}
|
|
}
|