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

Remove unused field and fix typo

This commit is contained in:
Dean Herbert 2022-06-02 14:48:26 +09:00
parent 45adca17da
commit 859a83ac90
2 changed files with 1 additions and 2 deletions

View File

@ -18,7 +18,6 @@ namespace osu.Game.Rulesets.Taiko.Skinning.Legacy
/// </summary>
internal class LegacyInputDrum : Container
{
public float CentreSize = 0.5f;
private LegacyHalfDrum left;
private LegacyHalfDrum right;
private Container content;

View File

@ -18,7 +18,7 @@ namespace osu.Game.Rulesets.Taiko.UI
/// <summary>
/// An overlay that captures and displays Taiko mouse and touch input.
/// The boundaries of this overlay defines the interactable area for touch input.
/// A secondary InputDrum is attached by this overlay, which defines the circulary boundary which distinguishes "centre" from "rim" hits, and also displays input.
/// A secondary InputDrum is attached by this overlay, which defines the circular boundary which distinguishes "centre" from "rim" hits, and also displays input.
/// </summary>
public class DrumTouchInputArea : Container
{