1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 13:27:23 +08:00

Make upper and lower bounds inclusive

This commit is contained in:
smoogipoo 2020-01-24 19:39:21 +09:00
parent ed66ee3ba6
commit 45a25214ab

View File

@ -25,7 +25,12 @@ namespace osu.Game.Screens.Select
public OptionalRange<BeatmapSetOnlineStatus> OnlineStatus;
public OptionalTextFilter Creator;
public OptionalTextFilter Artist;
public OptionalRange<double> UserStarDifficulty;
public OptionalRange<double> UserStarDifficulty = new OptionalRange<double>
{
IsLowerInclusive = true,
IsUpperInclusive = true
};
public string[] SearchTerms = Array.Empty<string>();