mirror of
https://github.com/ppy/osu.git
synced 2024-12-16 02:22:59 +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);
|
|
}
|
|
}
|
|
} |