1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-06 09:03:01 +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> /// </summary>
internal class LegacyInputDrum : Container internal class LegacyInputDrum : Container
{ {
public float CentreSize = 0.5f;
private LegacyHalfDrum left; private LegacyHalfDrum left;
private LegacyHalfDrum right; private LegacyHalfDrum right;
private Container content; private Container content;

View File

@ -18,7 +18,7 @@ namespace osu.Game.Rulesets.Taiko.UI
/// <summary> /// <summary>
/// An overlay that captures and displays Taiko mouse and touch input. /// An overlay that captures and displays Taiko mouse and touch input.
/// The boundaries of this overlay defines the interactable area for 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> /// </summary>
public class DrumTouchInputArea : Container public class DrumTouchInputArea : Container
{ {