mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-08-26 23:44:07 -05:00
Use more efficient string append
This commit is contained in:
@@ -8,10 +8,10 @@ public static class SpriteName
|
||||
{
|
||||
public static bool AllowShinySprite { get; set; }
|
||||
|
||||
private const string Separator = "_";
|
||||
private const string Cosplay = "c";
|
||||
private const string Shiny = "s";
|
||||
private const string GGStarter = "p";
|
||||
private const char Separator = '_';
|
||||
private const char Cosplay = 'c';
|
||||
private const char Shiny = 's';
|
||||
private const char GGStarter = 'p';
|
||||
|
||||
/// <summary>
|
||||
/// Gets the resource name of the <see cref="Ball"/> sprite.
|
||||
|
||||
Reference in New Issue
Block a user