Partial everything

This commit is contained in:
Dan Balasescu
2022-11-24 14:32:20 +09:00
committed by Dean Herbert
parent a1c559ae05
commit 7bc8908ca9
2331 changed files with 3218 additions and 3218 deletions

View File

@ -19,7 +19,7 @@ using osu.Framework.Platform;
namespace osu.Game.Graphics.UserInterface
{
public class OsuPasswordTextBox : OsuTextBox, ISuppressKeyEventLogging
public partial class OsuPasswordTextBox : OsuTextBox, ISuppressKeyEventLogging
{
protected override Drawable GetDrawableCharacter(char c) => new FallingDownContainer
{
@ -73,7 +73,7 @@ namespace osu.Game.Graphics.UserInterface
private void updateCapsWarning(bool visible) => warning.FadeTo(visible ? 1 : 0, 250, Easing.OutQuint);
public class PasswordMaskChar : Container
public partial class PasswordMaskChar : Container
{
private readonly CircularContainer circle;
@ -110,7 +110,7 @@ namespace osu.Game.Graphics.UserInterface
}
}
private class CapsWarning : SpriteIcon, IHasTooltip
private partial class CapsWarning : SpriteIcon, IHasTooltip
{
public LocalisableString TooltipText => "caps lock is active";