You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
M:osuTK.MathHelper.Clamp(System.Single,System.Single,System.Single)~System.Single;This osuTK helper has unsafe semantics when one of the bounds provided is NaN. Use Math.Clamp() instead.
23
+
M:osuTK.MathHelper.Clamp(System.Double,System.Double,System.Double)~System.Double;This osuTK helper has unsafe semantics when one of the bounds provided is NaN. Use Math.Clamp() instead.
Copy file name to clipboardExpand all lines: Templates/Rulesets/ruleset-scrolling-example/osu.Game.Rulesets.Pippidon/Beatmaps/PippidonBeatmapConverter.cs
+2-2
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,7 @@
1
1
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
2
2
// See the LICENCE file in the repository root for full licence text.
3
3
4
+
usingSystem;
4
5
usingSystem.Collections.Generic;
5
6
usingSystem.Linq;
6
7
usingSystem.Threading;
@@ -9,7 +10,6 @@
9
10
usingosu.Game.Rulesets.Objects.Types;
10
11
usingosu.Game.Rulesets.Pippidon.Objects;
11
12
usingosu.Game.Rulesets.Pippidon.UI;
12
-
usingosuTK;
13
13
14
14
namespaceosu.Game.Rulesets.Pippidon.Beatmaps
15
15
{
@@ -40,7 +40,7 @@ protected override IEnumerable<PippidonHitObject> ConvertHitObject(HitObject ori
0 commit comments