1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-18 15:30:06 +08:00
Files
osu-lazer/osu.Game/Overlays/OSD/CopyStringToast.cs
T

16 lines
403 B
C#

// 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;
namespace osu.Game.Overlays.OSD
{
public partial class CopyStringToast : Toast
{
public CopyStringToast()
: base(CommonStrings.General, ToastStrings.StringCopied, "")
{
}
}
}