1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 23:27:24 +08:00
osu-lazer/osu.Game/Overlays/Comments/Buttons/LoadRepliesButton.cs

14 lines
362 B
C#
Raw Normal View History

2020-07-11 12:47:17 +08:00
// 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.
namespace osu.Game.Overlays.Comments.Buttons
{
public class LoadRepliesButton : CommentRepliesButton
{
2020-07-12 17:27:26 +08:00
public LoadRepliesButton()
{
Text = "load replies";
}
2020-07-11 12:47:17 +08:00
}
}