mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 10:12:54 +08:00
Fix CI issues
This commit is contained in:
parent
e10c973aa6
commit
a314a6119a
@ -14,10 +14,8 @@ using System.Collections.Generic;
|
|||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
using JetBrains.Annotations;
|
using JetBrains.Annotations;
|
||||||
using osu.Framework.Audio.Track;
|
|
||||||
using osu.Framework.Bindables;
|
using osu.Framework.Bindables;
|
||||||
using osu.Framework.Graphics.Cursor;
|
using osu.Framework.Graphics.Cursor;
|
||||||
using osu.Framework.Graphics.Textures;
|
|
||||||
using osu.Framework.Input;
|
using osu.Framework.Input;
|
||||||
using osu.Framework.Input.Events;
|
using osu.Framework.Input.Events;
|
||||||
using osu.Game.Configuration;
|
using osu.Game.Configuration;
|
||||||
@ -58,10 +56,6 @@ namespace osu.Game.Rulesets.UI
|
|||||||
|
|
||||||
private readonly Lazy<Playfield> playfield;
|
private readonly Lazy<Playfield> playfield;
|
||||||
|
|
||||||
private TextureStore textureStore;
|
|
||||||
|
|
||||||
private ISampleStore localSampleStore;
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The playfield.
|
/// The playfield.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@ -146,8 +140,6 @@ namespace osu.Game.Rulesets.UI
|
|||||||
{
|
{
|
||||||
dependencies = new DrawableRulesetDependencies(Ruleset, base.CreateChildDependencies(parent));
|
dependencies = new DrawableRulesetDependencies(Ruleset, base.CreateChildDependencies(parent));
|
||||||
|
|
||||||
textureStore = dependencies.TextureStore;
|
|
||||||
localSampleStore = dependencies.SampleStore;
|
|
||||||
Config = dependencies.RulesetConfigManager;
|
Config = dependencies.RulesetConfigManager;
|
||||||
|
|
||||||
onScreenDisplay = dependencies.Get<OnScreenDisplay>();
|
onScreenDisplay = dependencies.Get<OnScreenDisplay>();
|
||||||
|
@ -21,7 +21,7 @@ namespace osu.Game.Rulesets.UI
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// The texture store to be used for the ruleset.
|
/// The texture store to be used for the ruleset.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public TextureStore TextureStore { get; private set; }
|
public TextureStore TextureStore { get; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The sample store to be used for the ruleset.
|
/// The sample store to be used for the ruleset.
|
||||||
@ -31,7 +31,7 @@ namespace osu.Game.Rulesets.UI
|
|||||||
/// the cached sample store (<see cref="FallbackSampleStore"/>) retrieves from
|
/// the cached sample store (<see cref="FallbackSampleStore"/>) retrieves from
|
||||||
/// this store and falls back to the parent store if this store doesn't have the requested sample.
|
/// this store and falls back to the parent store if this store doesn't have the requested sample.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
public ISampleStore SampleStore { get; private set; }
|
public ISampleStore SampleStore { get; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The ruleset config manager.
|
/// The ruleset config manager.
|
||||||
|
Loading…
Reference in New Issue
Block a user