mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 10:33:30 +08:00
Make counter public.
This commit is contained in:
parent
d8666deaa0
commit
16f1dff849
@ -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;
|
||||
|
@ -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)
|
||||
|
@ -6,7 +6,7 @@ using osu.Framework.Graphics.Containers;
|
||||
|
||||
namespace osu.Game.Graphics.UserInterface
|
||||
{
|
||||
class KeyCounter : FlowContainer
|
||||
public class KeyCounter : FlowContainer
|
||||
{
|
||||
public KeyCounter()
|
||||
{
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user