1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-29 13:27:26 +08:00
osu-lazer/osu.Game/Overlays/OSD/CopyUrlToast.cs

16 lines
399 B
C#
Raw Normal View History

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
{
public class CopyUrlToast : Toast
{
public CopyUrlToast()
: base(UserInterfaceStrings.GeneralHeader, ToastStrings.UrlCopied, "")
{
}
}
}