mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 15:16:38 +09:00
Order components by name for now
This commit is contained in:
@ -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)
|
||||
|
Reference in New Issue
Block a user