Skip to content

Commit

Permalink
Merge pull request #190 from naoei/dependabot/nuget/ppy.osu.Game-2021…
Browse files Browse the repository at this point in the history
….724.1

Bump ppy.osu.Game from 2021.720.0 to 2021.724.1
  • Loading branch information
LumpBloom7 authored Jul 24, 2021
2 parents c1d42c4 + cc6ad26 commit 5e9521a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions osu.Game.Rulesets.Tau/Objects/TauHitObject.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,14 @@ public int ComboOffset
set => ComboOffsetBindable.Value = value;
}

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

public int ComboIndexWithOffsets
{
get => ComboIndexWithOffsetsBindable.Value;
set => ComboIndexWithOffsetsBindable.Value = value;
}

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

public virtual int IndexInCurrentCombo
Expand Down
2 changes: 1 addition & 1 deletion osu.Game.Rulesets.Tau/osu.Game.Rulesets.Tau.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<EmbeddedResource Include="Resources\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="ppy.osu.Game" Version="2021.720.0" />
<PackageReference Include="ppy.osu.Game" Version="2021.724.1" />
</ItemGroup>
<ItemGroup>
<Folder Include="Resources\Samples\Gameplay" />
Expand Down

0 comments on commit 5e9521a

Please sign in to comment.