1
0
Fork 0
mirror of https://github.com/ppy/osu-tools.git synced 2025-06-11 10:18:12 +09:00
osu-tools/PerformanceCalculatorGUI/Components/LabelledPasswordTextBox.cs
2022-04-20 20:14:57 +03:00

13 lines
440 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;
using osu.Game.Graphics.UserInterfaceV2;
namespace PerformanceCalculatorGUI.Components
{
internal class LabelledPasswordTextBox : LabelledTextBox
{
protected override OsuTextBox CreateTextBox() => new OsuPasswordTextBox();
}
}