mirror of
https://github.com/ppy/osu.git
synced 2025-01-15 10:02:59 +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 OptionalRange<BeatmapSetOnlineStatus> OnlineStatus;
|
||||||
public OptionalTextFilter Creator;
|
public OptionalTextFilter Creator;
|
||||||
public OptionalTextFilter Artist;
|
public OptionalTextFilter Artist;
|
||||||
public OptionalRange<double> UserStarDifficulty;
|
|
||||||
|
public OptionalRange<double> UserStarDifficulty = new OptionalRange<double>
|
||||||
|
{
|
||||||
|
IsLowerInclusive = true,
|
||||||
|
IsUpperInclusive = true
|
||||||
|
};
|
||||||
|
|
||||||
public string[] SearchTerms = Array.Empty<string>();
|
public string[] SearchTerms = Array.Empty<string>();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user