Skip to content

Commit

Permalink
Move opening brackets on a new line to match the project style
Browse files Browse the repository at this point in the history
  • Loading branch information
fuji97 committed Jul 9, 2019
1 parent 7183377 commit 11fbc61
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions ModAssistant/Classes/OneClickInstaller.cs
Original file line number Diff line number Diff line change
Expand Up @@ -255,20 +255,23 @@ public class Metadata
public double bpm { get; set; }
}

public class Characteristic {
public class Characteristic
{
public string name { get; set; }
public CharacteristicDifficulties difficulties { get; set; }
}

public class CharacteristicDifficulties {
public class CharacteristicDifficulties
{
public Difficulty easy { get; set; }
public Difficulty normal { get; set; }
public Difficulty hard { get; set; }
public Difficulty expert { get; set; }
public Difficulty expertPlus { get; set; }
}

public class Difficulty {
public class Difficulty
{
public double duration { get; set; }
public double length { get; set; }
public double bombs { get; set; }
Expand Down

0 comments on commit 11fbc61

Please sign in to comment.