Skip to content

Commit

Permalink
Bump osugame
Browse files Browse the repository at this point in the history
  • Loading branch information
EVAST9919 committed Nov 20, 2021
1 parent c2b2a73 commit 492b22e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ namespace osu.Game.Rulesets.Touhosu.Difficulty
{
public class TouhosuDifficultyCalculator : DifficultyCalculator
{
public TouhosuDifficultyCalculator(Ruleset ruleset, WorkingBeatmap beatmap)
public TouhosuDifficultyCalculator(IRulesetInfo ruleset, IWorkingBeatmap beatmap)
: base(ruleset, beatmap)
{
}
Expand Down
4 changes: 2 additions & 2 deletions osu.Game.Rulesets.Touhosu/TouhosuRuleset.cs
Original file line number Diff line number Diff line change
Expand Up @@ -104,11 +104,11 @@ public override IEnumerable<Mod> GetModsFor(ModType type)
Texture = new TextureStore(new TextureLoaderStore(CreateResourceStore()), false).Get("Textures/logo"),
};

public override DifficultyCalculator CreateDifficultyCalculator(WorkingBeatmap beatmap) => new TouhosuDifficultyCalculator(this, beatmap);

protected override IEnumerable<HitResult> GetValidHitResults() => new[]
{
HitResult.Perfect
};

public override DifficultyCalculator CreateDifficultyCalculator(IWorkingBeatmap beatmap) => new TouhosuDifficultyCalculator(RulesetInfo, beatmap);
}
}
2 changes: 1 addition & 1 deletion osu.Game.Rulesets.Touhosu/osu.Game.Rulesets.Touhosu.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
<EmbeddedResource Include="Resources\**\*" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="ppy.osu.Game" Version="2021.1108.0" />
<PackageReference Include="ppy.osu.Game" Version="2021.1120.0" />
</ItemGroup>
</Project>

0 comments on commit 492b22e

Please sign in to comment.