mirror of
https://github.com/ppy/osu.git
synced 2024-12-05 02:53:21 +08:00
remove empty constructors
This commit is contained in:
parent
11cb9e72f5
commit
b7ae1521cc
@ -10,8 +10,6 @@ namespace osu.Game.Rulesets.Catch.Difficulty
|
||||
{
|
||||
public struct CatchDifficultyAttributes : IDifficultyAttributes
|
||||
{
|
||||
public CatchDifficultyAttributes() { }
|
||||
|
||||
/// <inheritdoc/>
|
||||
public double StarRating { get; set; }
|
||||
|
||||
|
@ -10,8 +10,6 @@ namespace osu.Game.Rulesets.Mania.Difficulty
|
||||
{
|
||||
public struct ManiaDifficultyAttributes : IDifficultyAttributes
|
||||
{
|
||||
public ManiaDifficultyAttributes() { }
|
||||
|
||||
/// <inheritdoc/>
|
||||
public double StarRating { get; set; }
|
||||
|
||||
|
@ -6,14 +6,11 @@ using JetBrains.Annotations;
|
||||
using Newtonsoft.Json;
|
||||
using osu.Game.Beatmaps;
|
||||
using osu.Game.Rulesets.Difficulty;
|
||||
using osu.Game.Rulesets.Mods;
|
||||
|
||||
namespace osu.Game.Rulesets.Osu.Difficulty
|
||||
{
|
||||
public struct OsuDifficultyAttributes : IDifficultyAttributes
|
||||
{
|
||||
public OsuDifficultyAttributes() { }
|
||||
|
||||
/// <inheritdoc/>
|
||||
public double StarRating { get; set; }
|
||||
|
||||
|
@ -10,8 +10,6 @@ namespace osu.Game.Rulesets.Taiko.Difficulty
|
||||
{
|
||||
public struct TaikoDifficultyAttributes : IDifficultyAttributes
|
||||
{
|
||||
public TaikoDifficultyAttributes() { }
|
||||
|
||||
/// <inheritdoc/>
|
||||
public double StarRating { get; set; }
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user