mirror of
https://github.com/ppy/osu.git
synced 2025-01-13 10:03:05 +08:00
Merge remote-tracking branch 'refs/remotes/upstream/master' into options-fixes
This commit is contained in:
commit
d70e8806b4
@ -1 +1 @@
|
|||||||
Subproject commit 478d0dd295a66c99556ca8039453e0f806ff4e9b
|
Subproject commit b8d0a0050be25aec4333134ca18497340e1154a7
|
@ -12,7 +12,7 @@ namespace osu.Game.GameModes.Play.Osu
|
|||||||
{
|
{
|
||||||
public class OsuPlayfield : Playfield
|
public class OsuPlayfield : Playfield
|
||||||
{
|
{
|
||||||
protected override Container Content => hitObjectContainer;
|
protected override Container<Drawable> Content => hitObjectContainer;
|
||||||
|
|
||||||
private Container hitObjectContainer;
|
private Container hitObjectContainer;
|
||||||
|
|
||||||
@ -53,7 +53,7 @@ namespace osu.Game.GameModes.Play.Osu
|
|||||||
|
|
||||||
class HitObjectContainer : Container
|
class HitObjectContainer : Container
|
||||||
{
|
{
|
||||||
protected override Vector2 ChildScale => new Vector2(0.625f);
|
public override Vector2 ChildScale => new Vector2(0.625f);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -25,7 +25,7 @@ namespace osu.Game.Graphics.Containers
|
|||||||
|
|
||||||
private Container content;
|
private Container content;
|
||||||
|
|
||||||
protected override Container Content => content;
|
protected override Container<Drawable> Content => content;
|
||||||
|
|
||||||
protected override void Load(BaseGame game)
|
protected override void Load(BaseGame game)
|
||||||
{
|
{
|
||||||
|
@ -29,7 +29,7 @@ namespace osu.Game
|
|||||||
|
|
||||||
public APIAccess API;
|
public APIAccess API;
|
||||||
|
|
||||||
protected override Container Content => ratioContainer;
|
protected override Container<Drawable> Content => ratioContainer;
|
||||||
|
|
||||||
private RatioAdjust ratioContainer;
|
private RatioAdjust ratioContainer;
|
||||||
|
|
||||||
|
@ -27,7 +27,7 @@ namespace osu.Game.Overlays
|
|||||||
|
|
||||||
private Container content;
|
private Container content;
|
||||||
|
|
||||||
protected override Container Content => content;
|
protected override Container<Drawable> Content => content;
|
||||||
|
|
||||||
private APIAccess api;
|
private APIAccess api;
|
||||||
|
|
||||||
|
@ -11,7 +11,7 @@ namespace osu.Game.Overlays.Options
|
|||||||
public abstract class OptionsSection : Container
|
public abstract class OptionsSection : Container
|
||||||
{
|
{
|
||||||
protected FlowContainer content;
|
protected FlowContainer content;
|
||||||
protected override Container Content => content;
|
protected override Container<Drawable> Content => content;
|
||||||
|
|
||||||
public abstract FontAwesome Icon { get; }
|
public abstract FontAwesome Icon { get; }
|
||||||
protected abstract string Header { get; }
|
protected abstract string Header { get; }
|
||||||
|
@ -12,7 +12,7 @@ namespace osu.Game.Overlays.Options
|
|||||||
public class OptionsSidebar : Container
|
public class OptionsSidebar : Container
|
||||||
{
|
{
|
||||||
private FlowContainer content;
|
private FlowContainer content;
|
||||||
protected override Container Content => content;
|
protected override Container<Drawable> Content => content;
|
||||||
|
|
||||||
public OptionsSidebar()
|
public OptionsSidebar()
|
||||||
{
|
{
|
||||||
|
@ -7,8 +7,8 @@ namespace osu.Game.Overlays.Options
|
|||||||
{
|
{
|
||||||
public abstract class OptionsSubsection : Container
|
public abstract class OptionsSubsection : Container
|
||||||
{
|
{
|
||||||
private Container content;
|
private Container<Drawable> content;
|
||||||
protected override Container Content => content;
|
protected override Container<Drawable> Content => content;
|
||||||
|
|
||||||
protected abstract string Header { get; }
|
protected abstract string Header { get; }
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user