1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-14 21:13:01 +08:00

Move load() to be directly below ctor.

This commit is contained in:
smoogipooo 2017-05-22 20:06:37 +09:00
parent de575b3867
commit adf8bb853e

View File

@ -47,14 +47,14 @@ namespace osu.Game.Graphics.Containers
lastControlPoint = controlPoint;
}
protected virtual void OnNewBeat(int newBeat, double beatLength, TimeSignatures timeSignature, bool kiai)
{
}
[BackgroundDependencyLoader]
private void load(OsuGameBase game)
{
beatmap.BindTo(game.Beatmap);
}
protected virtual void OnNewBeat(int newBeat, double beatLength, TimeSignatures timeSignature, bool kiai)
{
}
}
}