2017-05-19 18:43:18 +00:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
2017-07-26 04:22:46 +00:00
|
|
|
|
namespace osu.Game.Beatmaps
|
2017-05-19 18:43:18 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2017-05-19 22:05:54 +00:00
|
|
|
|
/// Beatmap info retrieved for previewing locally without having the beatmap downloaded.
|
2017-05-19 18:43:18 +00:00
|
|
|
|
/// </summary>
|
|
|
|
|
public class BeatmapOnlineInfo
|
|
|
|
|
{
|
2017-09-11 05:55:32 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The length in milliseconds of this beatmap's song.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public double Length { get; set; }
|
|
|
|
|
|
2017-09-11 05:48:48 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The amount of circles in this beatmap.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int CircleCount { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The amount of sliders in this beatmap.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int SliderCount { get; set; }
|
|
|
|
|
|
2017-05-19 18:43:18 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The amount of plays this beatmap has.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int PlayCount { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2017-05-28 03:37:55 +00:00
|
|
|
|
/// The amount of passes this beatmap has.
|
2017-05-19 18:43:18 +00:00
|
|
|
|
/// </summary>
|
2017-05-28 03:37:55 +00:00
|
|
|
|
public int PassCount { get; set; }
|
2017-05-19 18:43:18 +00:00
|
|
|
|
}
|
|
|
|
|
}
|