mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 12:17:26 +08:00
23 lines
770 B
C#
23 lines
770 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.
|
|
|
|
#nullable disable
|
|
using osu.Framework.Extensions.Color4Extensions;
|
|
using osu.Game.Graphics.Containers;
|
|
|
|
namespace osu.Game.Screens.OnlinePlay
|
|
{
|
|
public partial class OnlinePlayScreenWaveContainer : WaveContainer
|
|
{
|
|
protected override bool StartHidden => true;
|
|
|
|
public OnlinePlayScreenWaveContainer()
|
|
{
|
|
FirstWaveColour = Color4Extensions.FromHex(@"654d8c");
|
|
SecondWaveColour = Color4Extensions.FromHex(@"554075");
|
|
ThirdWaveColour = Color4Extensions.FromHex(@"44325e");
|
|
FourthWaveColour = Color4Extensions.FromHex(@"392850");
|
|
}
|
|
}
|
|
}
|