1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-05 10:33:22 +08:00

remove empty constructors

This commit is contained in:
minisbett 2024-11-18 18:52:53 +01:00
parent 11cb9e72f5
commit b7ae1521cc
No known key found for this signature in database
GPG Key ID: 2DB6D529C95A0403
4 changed files with 0 additions and 9 deletions

View File

@ -10,8 +10,6 @@ namespace osu.Game.Rulesets.Catch.Difficulty
{ {
public struct CatchDifficultyAttributes : IDifficultyAttributes public struct CatchDifficultyAttributes : IDifficultyAttributes
{ {
public CatchDifficultyAttributes() { }
/// <inheritdoc/> /// <inheritdoc/>
public double StarRating { get; set; } public double StarRating { get; set; }

View File

@ -10,8 +10,6 @@ namespace osu.Game.Rulesets.Mania.Difficulty
{ {
public struct ManiaDifficultyAttributes : IDifficultyAttributes public struct ManiaDifficultyAttributes : IDifficultyAttributes
{ {
public ManiaDifficultyAttributes() { }
/// <inheritdoc/> /// <inheritdoc/>
public double StarRating { get; set; } public double StarRating { get; set; }

View File

@ -6,14 +6,11 @@ using JetBrains.Annotations;
using Newtonsoft.Json; using Newtonsoft.Json;
using osu.Game.Beatmaps; using osu.Game.Beatmaps;
using osu.Game.Rulesets.Difficulty; using osu.Game.Rulesets.Difficulty;
using osu.Game.Rulesets.Mods;
namespace osu.Game.Rulesets.Osu.Difficulty namespace osu.Game.Rulesets.Osu.Difficulty
{ {
public struct OsuDifficultyAttributes : IDifficultyAttributes public struct OsuDifficultyAttributes : IDifficultyAttributes
{ {
public OsuDifficultyAttributes() { }
/// <inheritdoc/> /// <inheritdoc/>
public double StarRating { get; set; } public double StarRating { get; set; }

View File

@ -10,8 +10,6 @@ namespace osu.Game.Rulesets.Taiko.Difficulty
{ {
public struct TaikoDifficultyAttributes : IDifficultyAttributes public struct TaikoDifficultyAttributes : IDifficultyAttributes
{ {
public TaikoDifficultyAttributes() { }
/// <inheritdoc/> /// <inheritdoc/>
public double StarRating { get; set; } public double StarRating { get; set; }