mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 06:57:39 +08:00
Order components by name for now
This commit is contained in:
parent
e4a6b7ae91
commit
59cb1ac126
@ -64,6 +64,7 @@ namespace osu.Game.Skinning.Editor
|
||||
var skinnableTypes = typeof(OsuGame).Assembly.GetTypes()
|
||||
.Where(t => !t.IsInterface)
|
||||
.Where(t => typeof(ISkinnableDrawable).IsAssignableFrom(t))
|
||||
.OrderBy(t => t.Name)
|
||||
.ToArray();
|
||||
|
||||
foreach (var type in skinnableTypes)
|
||||
|
Loading…
Reference in New Issue
Block a user