1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-06 09:47:22 +08:00

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
394 B
C#
Raw Normal View History

2022-10-13 22:12:32 +03: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-13 23:57:25 +03:00
namespace osu.Game.Overlays.OSD
2022-10-13 22:12:32 +03:00
{
public partial class CopyUrlToast : Toast
{
public CopyUrlToast()
2023-09-05 23:00:07 -07:00
: base(CommonStrings.General, ToastStrings.UrlCopied, "")
2022-10-13 22:12:32 +03:00
{
}
}
}