A game framework written with osu! in mind.
at master 11 lines 459 B view raw
1// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. 2// See the LICENCE file in the repository root for full licence text. 3 4namespace osu.Framework.Graphics.UserInterface 5{ 6 public class BasicColourPicker : ColourPicker 7 { 8 protected override HSVColourPicker CreateHSVColourPicker() => new BasicHSVColourPicker(); 9 protected override HexColourPicker CreateHexColourPicker() => new BasicHexColourPicker(); 10 } 11}