diff --git a/templates/ruleset-scrolling-empty/osu.Game.Rulesets.EmptyScrolling/Objects/Drawables/DrawableEmptyScrollingObject.cs b/templates/ruleset-scrolling-empty/osu.Game.Rulesets.EmptyScrolling/Objects/Drawables/DrawableEmptyScrollingObject.cs index 622f2d2..6bbadf1 100644 --- a/templates/ruleset-scrolling-empty/osu.Game.Rulesets.EmptyScrolling/Objects/Drawables/DrawableEmptyScrollingObject.cs +++ b/templates/ruleset-scrolling-empty/osu.Game.Rulesets.EmptyScrolling/Objects/Drawables/DrawableEmptyScrollingObject.cs @@ -1,12 +1,8 @@ // Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. -using osu.Framework.Allocation; using osu.Framework.Graphics; -using osu.Framework.Graphics.Sprites; -using osu.Framework.Graphics.Textures; using osu.Game.Rulesets.Objects.Drawables; -using osu.Game.Rulesets.EmptyScrolling.UI; using osu.Game.Rulesets.Scoring; using osuTK; using osuTK.Graphics; @@ -20,16 +16,8 @@ public DrawableEmptyScrollingObject(EmptyScrollingHitObject hitObject) { Size = new Vector2(40); Origin = Anchor.Centre; - } - [BackgroundDependencyLoader] - private void load(EmptyScrollingPlayfield playfield, TextureStore textures) - { - AddInternal(new Sprite - { - RelativeSizeAxes = Axes.Both, - Texture = textures.Get("coin"), - }); + // todo: add visuals. } protected override void CheckForResult(bool userTriggered, double timeOffset)