2022-10-14 03:12:32 +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.Localisation;
|
|
|
|
|
2022-10-14 04:57:25 +08:00
|
|
|
namespace osu.Game.Overlays.OSD
|
2022-10-14 03:12:32 +08:00
|
|
|
{
|
2022-11-24 13:32:20 +08:00
|
|
|
public partial class CopyUrlToast : Toast
|
2022-10-14 03:12:32 +08:00
|
|
|
{
|
|
|
|
public CopyUrlToast()
|
2023-09-06 14:00:07 +08:00
|
|
|
: base(CommonStrings.General, ToastStrings.UrlCopied, "")
|
2022-10-14 03:12:32 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|