2022-10-14 20:52:09 +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.
|
|
|
|
|
|
|
|
using osu.Game.Graphics.UserInterfaceV2;
|
2022-10-22 07:45:06 +08:00
|
|
|
using osu.Game.Online.API.Requests.Responses;
|
2022-10-17 18:42:17 +08:00
|
|
|
using osu.Game.Resources.Localisation.Web;
|
2022-10-14 20:52:09 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Comments
|
|
|
|
{
|
2022-12-21 00:37:16 +08:00
|
|
|
public partial class ReportCommentPopover : ReportPopover<CommentReportReason>
|
2022-10-14 20:52:09 +08:00
|
|
|
{
|
2022-10-22 07:45:06 +08:00
|
|
|
public ReportCommentPopover(Comment? comment)
|
2022-12-21 00:37:16 +08:00
|
|
|
: base(ReportStrings.CommentTitle(comment?.User?.Username ?? comment?.LegacyName ?? @"Someone"))
|
2022-10-14 20:52:09 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|