1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 21:27:24 +08:00

Add xmldoc for KeyCounterController

This commit is contained in:
Dean Herbert 2023-06-26 16:47:33 +09:00
parent 084354a8dc
commit 44c08f3944

View File

@ -9,6 +9,10 @@ using osu.Framework.Graphics.Containers;
namespace osu.Game.Screens.Play.HUD
{
/// <summary>
/// Keeps track of key press counts for a current play session, exposing bindable counts which can
/// be used for display purposes.
/// </summary>
public partial class KeyCounterController : CompositeComponent
{
public readonly Bindable<bool> IsCounting = new BindableBool(true);