Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
EVAST9919 committed Jan 19, 2025
1 parent 12d1111 commit b5146dd
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
13 changes: 11 additions & 2 deletions osu.Game.Rulesets.Touhosu/Objects/TouhosuHitObject.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,17 @@ public virtual Vector2 Position
set => PositionBindable.Value = value;
}

public float X => Position.X;
public float Y => Position.Y;
public float X
{
get => Position.X;
set => Position = new Vector2(value, Position.Y);
}

public float Y
{
get => Position.Y;
set => Position = new Vector2(Position.X, value);
}

protected override HitWindows CreateHitWindows() => HitWindows.Empty;
}
Expand Down
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="2024.906.2"/>
<PackageReference Include="ppy.osu.Game" Version="2025.118.0" />
</ItemGroup>
</Project>

0 comments on commit b5146dd

Please sign in to comment.