diff --git a/osu.Game/Graphics/UserInterface/Counter.cs b/osu.Game/Graphics/UserInterface/Counter.cs index c2910bb490..aea2d4c457 100644 --- a/osu.Game/Graphics/UserInterface/Counter.cs +++ b/osu.Game/Graphics/UserInterface/Counter.cs @@ -9,7 +9,7 @@ using osu.Framework.Graphics.Sprites; namespace osu.Game.Graphics.UserInterface { - abstract class Count : AutoSizeContainer + public abstract class Count : AutoSizeContainer { private Sprite buttonSprite; private Sprite glowSprite; diff --git a/osu.Game/Graphics/UserInterface/KeyBoardCount.cs b/osu.Game/Graphics/UserInterface/KeyBoardCount.cs index 2f9997feea..1b2289e5ce 100644 --- a/osu.Game/Graphics/UserInterface/KeyBoardCount.cs +++ b/osu.Game/Graphics/UserInterface/KeyBoardCount.cs @@ -7,7 +7,7 @@ using osu.Framework.Input; namespace osu.Game.Graphics.UserInterface { - class KeyBoardCount : Count + public class KeyBoardCount : Count { public Key Key { get; } public KeyBoardCount(string name, Key key) : base(name) diff --git a/osu.Game/Graphics/UserInterface/KeyCounter.cs b/osu.Game/Graphics/UserInterface/KeyCounter.cs index 3b974be19c..3decba11ed 100644 --- a/osu.Game/Graphics/UserInterface/KeyCounter.cs +++ b/osu.Game/Graphics/UserInterface/KeyCounter.cs @@ -6,7 +6,7 @@ using osu.Framework.Graphics.Containers; namespace osu.Game.Graphics.UserInterface { - class KeyCounter : FlowContainer + public class KeyCounter : FlowContainer { public KeyCounter() { diff --git a/osu.Game/Graphics/UserInterface/MouseCount.cs b/osu.Game/Graphics/UserInterface/MouseCount.cs index b993ce3a53..bfa0def26e 100644 --- a/osu.Game/Graphics/UserInterface/MouseCount.cs +++ b/osu.Game/Graphics/UserInterface/MouseCount.cs @@ -8,7 +8,7 @@ using osu.Framework.Input; namespace osu.Game.Graphics.UserInterface { - class MouseCount : Count + public class MouseCount : Count { public MouseButton Button { get; } public MouseCount(string name, MouseButton button) : base(name)