1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-15 11:47:24 +08:00

Revert "Use new place grid icon"

This reverts commit db10202642.
This commit is contained in:
OliBomby 2024-10-07 19:06:32 +02:00
parent db10202642
commit 076c8dec5a
2 changed files with 1 additions and 5 deletions

View File

@ -23,7 +23,7 @@ namespace osu.Game.Rulesets.Osu.Edit
""";
}
public override Drawable CreateIcon() => new SpriteIcon { Icon = OsuIcon.EditorPlaceGrid };
public override Drawable CreateIcon() => new SpriteIcon { Icon = OsuIcon.EditorGridSnap };
public override PlacementBlueprint CreatePlacementBlueprint() => new GridPlacementBlueprint();
}

View File

@ -178,7 +178,6 @@ namespace osu.Game.Graphics
public static IconUsage EditorWhistle => get(OsuIconMapping.EditorWhistle);
public static IconUsage Tortoise => get(OsuIconMapping.Tortoise);
public static IconUsage Hare => get(OsuIconMapping.Hare);
public static IconUsage EditorPlaceGrid => get(OsuIconMapping.EditorPlaceGrid);
private static IconUsage get(OsuIconMapping glyph) => new IconUsage((char)glyph, FONT_NAME);
@ -393,9 +392,6 @@ namespace osu.Game.Graphics
[Description(@"hare")]
Hare,
[Description(@"Editor/place-grid")]
EditorPlaceGrid,
}
public class OsuIconStore : ITextureStore, ITexturedGlyphLookupStore