diff --git a/osu.Game.Tournament/TournamentFont.cs b/osu.Game.Tournament/TournamentFont.cs
index d2925d7632..f9e60ff2bc 100644
--- a/osu.Game.Tournament/TournamentFont.cs
+++ b/osu.Game.Tournament/TournamentFont.cs
@@ -67,4 +67,9 @@ namespace osu.Game.Tournament
return weightString;
}
}
+
+ public enum TournamentTypeface
+ {
+ Aquatico
+ }
}
diff --git a/osu.Game.Tournament/TournamentGame.cs b/osu.Game.Tournament/TournamentGame.cs
index 42e4ab3c13..7dbcf37af6 100644
--- a/osu.Game.Tournament/TournamentGame.cs
+++ b/osu.Game.Tournament/TournamentGame.cs
@@ -2,8 +2,6 @@
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Graphics;
-using osu.Framework.Graphics.Sprites;
-using osu.Game.Graphics;
using osu.Game.Graphics.Cursor;
namespace osu.Game.Tournament
@@ -20,33 +18,8 @@ namespace osu.Game.Tournament
Child = new TournamentSceneManager()
});
+ // we don't want to show the menu cursor as it would appear on stream output.
MenuCursorContainer.Cursor.Alpha = 0;
}
}
-
- public static class TournamentFontExtensions
- {
- ///
- /// Creates a new by applying adjustments to this .
- ///
- /// The base .
- /// The font typeface. If null, the value is copied from this .
- /// The text size. If null, the value is copied from this .
- /// The font weight. If null, the value is copied from this .
- /// Whether the font is italic. If null, the value is copied from this .
- /// Whether all characters should be spaced apart the same distance. If null, the value is copied from this .
- /// The resulting .
- public static FontUsage With(this FontUsage usage, TournamentTypeface? typeface = null, float? size = null, FontWeight? weight = null, bool? italics = null, bool? fixedWidth = null)
- {
- string familyString = typeface != null ? TournamentFont.GetFamilyString(typeface.Value) : usage.Family;
- string weightString = weight != null ? TournamentFont.GetWeightString(familyString, weight.Value) : usage.Weight;
-
- return usage.With(familyString, size, weightString, italics, fixedWidth);
- }
- }
-
- public enum TournamentTypeface
- {
- Aquatico
- }
}