mirror of https://github.com/ppy/osu
Address CI concern
This commit is contained in:
parent
7729760017
commit
e8ce3e16b0
|
@ -11,11 +11,11 @@ namespace osu.Game.Rulesets.Catch.Objects.Drawable
|
|||
{
|
||||
internal class DrawableFruit : Sprite
|
||||
{
|
||||
private readonly CatchBaseHit h;
|
||||
//private readonly CatchBaseHit h;
|
||||
|
||||
public DrawableFruit(CatchBaseHit h)
|
||||
{
|
||||
this.h = h;
|
||||
//this.h = h;
|
||||
|
||||
Origin = Anchor.Centre;
|
||||
Scale = new Vector2(0.1f);
|
||||
|
|
|
@ -247,7 +247,7 @@ protected override void Update()
|
|||
|
||||
private class TransformTimeSpan : Transform<double, Drawable>
|
||||
{
|
||||
public virtual double CurrentValue
|
||||
public double CurrentValue
|
||||
{
|
||||
get
|
||||
{
|
||||
|
|
|
@ -39,7 +39,7 @@ public override void Increment(int amount)
|
|||
|
||||
private class TransformCounterCount : Transform<int, Drawable>
|
||||
{
|
||||
public virtual int CurrentValue
|
||||
public int CurrentValue
|
||||
{
|
||||
get
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue