1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-12 15:22:55 +08:00

Fill out missing documentation

This commit is contained in:
Salman Ahmed 2020-08-19 08:39:40 +03:00
parent dde0bc6070
commit af52b73b06
2 changed files with 6 additions and 0 deletions

View File

@ -16,6 +16,9 @@ using osuTK.Graphics;
namespace osu.Game.Rulesets.Catch.Skinning namespace osu.Game.Rulesets.Catch.Skinning
{ {
/// <summary>
/// A combo counter implementation that visually behaves almost similar to osu!stable's combo counter.
/// </summary>
public class LegacyComboCounter : CompositeDrawable, ICatchComboCounter public class LegacyComboCounter : CompositeDrawable, ICatchComboCounter
{ {
private readonly ISkin skin; private readonly ISkin skin;

View File

@ -10,6 +10,9 @@ using osuTK.Graphics;
namespace osu.Game.Rulesets.Catch.UI namespace osu.Game.Rulesets.Catch.UI
{ {
/// <summary>
/// Represents a component that displays a skinned <see cref="ICatchComboCounter"/> and handles combo judgement results for updating it accordingly.
/// </summary>
public class CatchComboDisplay : SkinnableDrawable public class CatchComboDisplay : SkinnableDrawable
{ {
private int currentCombo; private int currentCombo;