Skip to content

Commit

Permalink
Bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
EVAST9919 committed Jul 24, 2021
1 parent df77999 commit d774b80
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions osu.Game.Rulesets.Touhosu/Objects/Projectile.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,13 @@ public virtual bool LastInCombo
}

public int ComboOffset { get; set; }

public Bindable<int> ComboIndexWithOffsetsBindable { get; } = new Bindable<int>();

public int ComboIndexWithOffsets
{
get => ComboIndexWithOffsetsBindable.Value;
set => ComboIndexWithOffsetsBindable.Value = value;
}
}
}
4 changes: 2 additions & 2 deletions osu.Game.Rulesets.Touhosu/osu.Game.Rulesets.Touhosu.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<EmbeddedResource Include="Resources\**\*" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="ppy.osu.Framework" Version="2021.714.0" />
<PackageReference Include="ppy.osu.Game" Version="2021.720.0" />
<PackageReference Include="ppy.osu.Framework" Version="2021.723.0" />
<PackageReference Include="ppy.osu.Game" Version="2021.724.0" />
</ItemGroup>
</Project>

0 comments on commit d774b80

Please sign in to comment.