Skip to content

Commit

Permalink
Merge pull request #22 from goodtrailer/dependabot/nuget/ppy.osu.Game…
Browse files Browse the repository at this point in the history
…-2021.724.1
  • Loading branch information
dependabot[bot] committed Jul 27, 2021
2 parents 9538993 + cc2ee0a commit 189476f
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.Soyokaze/Objects/SoyokazeHitObject.cs
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,14 @@ public int ComboIndex
set => ComboIndexBindable.Value = value;
}

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

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

public Bindable<bool> LastInComboBindable { get; } = new Bindable<bool>();

public bool LastInCombo
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,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 189476f

Please sign in to comment.