1
0
Fork 0
mirror of https://github.com/ppy/osu-tools.git synced 2025-06-08 15:27:01 +09:00
osu-tools/PerformanceCalculatorGUI/Components/TextBoxes/LabelledPasswordTextBox.cs

12 lines
423 B
C#

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Game.Graphics.UserInterface;
namespace PerformanceCalculatorGUI.Components.TextBoxes
{
public partial class LabelledPasswordTextBox : ExtendedLabelledTextBox
{
protected override OsuTextBox CreateTextBox() => new OsuPasswordTextBox();
}
}