mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 21:07:33 +08:00
15 lines
305 B
C#
15 lines
305 B
C#
|
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);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|