osu/osu.Game/Overlays/OSD/CopyUrlToast.cs

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