mirror of
https://github.com/ppy/osu.git
synced 2024-12-15 21:03:08 +08:00
Fix remaining cases
This commit is contained in:
parent
c753cb46c5
commit
a7c2fd078f
@ -150,12 +150,12 @@ namespace osu.Game.Beatmaps.Drawables
|
||||
};
|
||||
}
|
||||
|
||||
private OsuColour colours;
|
||||
[Resolved]
|
||||
private OsuColour colours { get; set; }
|
||||
|
||||
[BackgroundDependencyLoader]
|
||||
private void load(OsuColour colours)
|
||||
private void load()
|
||||
{
|
||||
this.colours = colours;
|
||||
background.Colour = colours.Gray3;
|
||||
}
|
||||
|
||||
|
@ -9,6 +9,7 @@ using System.Net.Http;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using Newtonsoft.Json.Linq;
|
||||
using osu.Framework.Allocation;
|
||||
using osu.Framework.Bindables;
|
||||
using osu.Framework.Extensions.ExceptionExtensions;
|
||||
using osu.Framework.Graphics;
|
||||
@ -21,7 +22,9 @@ namespace osu.Game.Online.API
|
||||
{
|
||||
public class APIAccess : Component, IAPIProvider
|
||||
{
|
||||
private readonly OsuConfigManager config;
|
||||
[Resolved]
|
||||
private OsuConfigManager config { get; set; }
|
||||
|
||||
private readonly OAuth authentication;
|
||||
|
||||
public string Endpoint => @"https://osu.ppy.sh";
|
||||
|
Loading…
Reference in New Issue
Block a user