This repository has been archived by the owner on Apr 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
1 addition
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,8 @@ | ||
// Copyright (c) ppy Pty Ltd <[email protected]>. 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) | ||
|