1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-03 15:54:44 +08:00
Files
osu-lazer/osu.Game/Screens/Menu/MatchmakingButton.cs
T
2025-09-07 16:17:27 +09:00

20 lines
661 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 System;
using osu.Framework.Graphics.Sprites;
using osu.Framework.Input.Events;
using osuTK.Graphics;
using osuTK.Input;
namespace osu.Game.Screens.Menu
{
public partial class MatchmakingButton : MainMenuButton
{
public MatchmakingButton(string sampleName, Color4 colour, Action<MainMenuButton, UIEvent>? clickAction = null, params Key[] triggerKeys)
: base("matchmaking", sampleName, FontAwesome.Solid.Newspaper, colour, clickAction, triggerKeys)
{
}
}
}