Skip to content

Commit a1a5deb

Browse files
Fix CI generic math compile errors from missing System.Numerics imports
Agent-Logs-Url: https://github.com/winnerspiros/osu/sessions/e9d86dc5-3d43-412f-b41a-36c70f51a28f Co-authored-by: winnerspiros <1675249+winnerspiros@users.noreply.github.com>
1 parent c03af59 commit a1a5deb

6 files changed

Lines changed: 6 additions & 0 deletions

File tree

osu.Game/Extensions/NumberFormattingExtensions.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
using System;
55
using System.Globalization;
6+
using System.Numerics;
67
using osu.Game.Utils;
78

89
namespace osu.Game.Extensions

osu.Game/Graphics/UserInterface/OsuSliderBar.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
using osu.Framework.Localisation;
1010
using osu.Framework.Utils;
1111
using osu.Game.Extensions;
12+
using System.Numerics;
1213

1314
namespace osu.Game.Graphics.UserInterface
1415
{

osu.Game/Overlays/Settings/Sections/SizeSlider.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
using System;
55
using System.Globalization;
6+
using System.Numerics;
67
using osu.Framework.Localisation;
78
using osu.Game.Graphics.UserInterface;
89

osu.Game/Overlays/Settings/SettingsPercentageSlider.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
using osu.Framework.Graphics;
55
using osu.Game.Configuration;
66
using osu.Game.Graphics.UserInterface;
7+
using System.Numerics;
78

89
namespace osu.Game.Overlays.Settings
910
{

osu.Game/Overlays/Settings/SettingsSlider.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
using osu.Framework.Graphics;
55
using osu.Framework.Graphics.UserInterface;
66
using osu.Game.Graphics.UserInterface;
7+
using System.Numerics;
78

89
namespace osu.Game.Overlays.Settings
910
{

osu.Game/Screens/Play/PlayerSettings/PlayerSliderBar.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
using osu.Game.Graphics;
77
using osu.Game.Graphics.UserInterface;
88
using osu.Game.Overlays.Settings;
9+
using System.Numerics;
910

1011
namespace osu.Game.Screens.Play.PlayerSettings
1112
{

0 commit comments

Comments
 (0)