mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 22:56:36 +09:00
Fix post-merge errors.
This commit is contained in:
@ -23,7 +23,7 @@ namespace osu.Game.Modes.Taiko.Objects.Drawable
|
||||
/// </summary>
|
||||
private int userHits;
|
||||
|
||||
private Bash bash;
|
||||
private readonly Bash bash;
|
||||
|
||||
public DrawableBash(Bash bash)
|
||||
: base(bash)
|
||||
@ -61,6 +61,10 @@ namespace osu.Game.Modes.Taiko.Objects.Drawable
|
||||
}
|
||||
}
|
||||
|
||||
protected override void UpdateState(ArmedState state)
|
||||
{
|
||||
}
|
||||
|
||||
protected override void UpdateScrollPosition(double time)
|
||||
{
|
||||
base.UpdateScrollPosition(Math.Min(time, HitObject.StartTime));
|
||||
|
Reference in New Issue
Block a user