mirror of
https://github.com/osukey/osukey.git
synced 2025-05-02 12:17:27 +09:00
18 lines
465 B
C#
18 lines
465 B
C#
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
|
|
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
namespace osu.Game.Graphics.UserInterface
|
|
{
|
|
class KeyCounter : FlowContainer
|
|
{
|
|
public KeyCounter()
|
|
{
|
|
Direction = FlowDirection.HorizontalOnly;
|
|
}
|
|
|
|
public void AddKey(Count key) => base.Add(key);
|
|
}
|
|
}
|