2020-10-28 01:13:18 +08:00
|
|
|
|
// 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.
|
|
|
|
|
|
2020-10-28 07:28:31 +08:00
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
2020-10-28 01:13:18 +08:00
|
|
|
|
namespace osu.Game.Overlays.BeatmapListing
|
|
|
|
|
{
|
|
|
|
|
public enum SearchExtra
|
|
|
|
|
{
|
2020-10-28 07:28:31 +08:00
|
|
|
|
[Description("Has Video")]
|
2020-10-28 01:13:18 +08:00
|
|
|
|
Video,
|
2020-10-28 07:39:51 +08:00
|
|
|
|
|
2020-10-28 07:28:31 +08:00
|
|
|
|
[Description("Has Storyboard")]
|
2020-10-28 03:27:29 +08:00
|
|
|
|
Storyboard
|
2020-10-28 01:13:18 +08:00
|
|
|
|
}
|
|
|
|
|
}
|