Add "ok" chart plotting; Add more keys to StreamColour .FromStreamName function

This commit is contained in:
HoutarouOreki
2018-07-26 23:53:12 +02:00
parent 516ba10dad
commit 46134ed63d
2 changed files with 60 additions and 31 deletions

View File

@ -19,10 +19,15 @@ namespace osu.Game.Graphics
private static readonly Dictionary<string, ColourInfo> colours = new Dictionary<string, ColourInfo>
{
{ "stable40", STABLE },
{ "Stable", STABLE },
{ "stable", STABLEFALLBACK },
{ "Stable Fallback", STABLEFALLBACK },
{ "beta40", BETA },
{ "Beta", BETA },
{ "cuttingedge", CUTTINGEDGE },
{ "Cutting Edge", CUTTINGEDGE },
{ "lazer", LAZER },
{ "Lazer", LAZER },
{ "web", WEB },
};