Add comment regarding unused enum members in LegacyNoteBodyStyle

This commit is contained in:
Dean Herbert 2023-02-13 17:43:52 +09:00
parent b1d2a433f8
commit ca768ca446

View File

@ -6,10 +6,12 @@ namespace osu.Game.Skinning
public enum LegacyNoteBodyStyle public enum LegacyNoteBodyStyle
{ {
Stretch = 0, Stretch = 0,
// listed as the default on https://osu.ppy.sh/wiki/en/Skinning/skin.ini, but is seemingly not according to the source.
// Repeat = 1,
RepeatTop = 2, RepeatTop = 2,
RepeatBottom = 3, RepeatBottom = 3,
RepeatTopAndBottom = 4, RepeatTopAndBottom = 4,
//Repeat = 1,
//RepeatMiddle = 5,
} }
} }