1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-09 06:53:40 +08:00
Files
osu-lazer/osu.Game/Overlays/OSD/TouchDeviceDetectedToast.cs
T
2023-11-02 21:24:58 +01:00

14 lines
407 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.
namespace osu.Game.Overlays.OSD
{
public partial class TouchDeviceDetectedToast : Toast
{
public TouchDeviceDetectedToast()
: base("osu!", "Touch device detected", "Touch Device mod applied to score")
{
}
}
}