1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-26 16:12:54 +08:00

Add ignore rules on more helper properties

This commit is contained in:
Dean Herbert 2022-01-19 09:46:45 +09:00
parent 67bf95bc91
commit 3bc091fe6d
2 changed files with 3 additions and 0 deletions

View File

@ -20,12 +20,14 @@ namespace osu.Game.Input.Bindings
public int? Variant { get; set; } public int? Variant { get; set; }
[Ignored]
public KeyCombination KeyCombination public KeyCombination KeyCombination
{ {
get => KeyCombinationString; get => KeyCombinationString;
set => KeyCombinationString = value.ToString(); set => KeyCombinationString = value.ToString();
} }
[Ignored]
public object Action public object Action
{ {
get => ActionInt; get => ActionInt;

View File

@ -104,6 +104,7 @@ namespace osu.Game.Scoring
} }
} }
[Ignored]
public ScoreRank Rank public ScoreRank Rank
{ {
get => (ScoreRank)RankInt; get => (ScoreRank)RankInt;