mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 08:20:00 +09:00
Add OsuButton with sane defaults
This commit is contained in:
15
osu.Game/Graphics/UserInterface/OsuButton.cs
Normal file
15
osu.Game/Graphics/UserInterface/OsuButton.cs
Normal file
@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using OpenTK.Graphics;
|
||||
using osu.Framework.Graphics.UserInterface;
|
||||
|
||||
namespace osu.Game.Graphics.UserInterface
|
||||
{
|
||||
public class OsuButton : Button
|
||||
{
|
||||
public OsuButton()
|
||||
{
|
||||
Height = 25;
|
||||
Colour = new Color4(14, 132, 165, 255);
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user