1
0
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:
Huo Yaoyuan 2016-09-24 08:52:41 +08:00
parent d8666deaa0
commit 16f1dff849
4 changed files with 4 additions and 4 deletions

View File

@ -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;

View File

@ -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)

View File

@ -6,7 +6,7 @@ using osu.Framework.Graphics.Containers;
namespace osu.Game.Graphics.UserInterface
{
class KeyCounter : FlowContainer
public class KeyCounter : FlowContainer
{
public KeyCounter()
{

View File

@ -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)