mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 21:07:33 +08:00
Make upper and lower bounds inclusive
This commit is contained in:
parent
ed66ee3ba6
commit
45a25214ab
@ -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>();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user