Move beat snapping to its own interface

This commit is contained in:
Dean Herbert
2020-01-23 14:39:56 +09:00
parent 2ef8714d67
commit 098d643955
7 changed files with 78 additions and 25 deletions

View File

@ -66,6 +66,7 @@ namespace osu.Game.Tests.Visual.Editor
Dependencies.CacheAs<IAdjustableClock>(clock);
Dependencies.CacheAs<IFrameBasedClock>(clock);
Dependencies.CacheAs(editorBeatmap);
Dependencies.CacheAs<IBeatSnapProvider>(editorBeatmap);
Child = new OsuHitObjectComposer(new OsuRuleset());
}