Make button text a property

This commit is contained in:
Andrei Zavatski
2020-07-12 12:27:26 +03:00
parent 40aa6c7453
commit da40f29b44
4 changed files with 29 additions and 19 deletions

View File

@ -5,6 +5,9 @@ namespace osu.Game.Overlays.Comments.Buttons
{
public class LoadRepliesButton : CommentRepliesButton
{
protected override string GetText() => "load replies";
public LoadRepliesButton()
{
Text = "load replies";
}
}
}