mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-22 20:13:06 +00:00
Use more efficient string append
This commit is contained in:
parent
e72c80613e
commit
c1ae32ba8b
1 changed files with 4 additions and 4 deletions
|
@ -8,10 +8,10 @@ namespace PKHeX.Drawing
|
|||
{
|
||||
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.
|
||||
|
|
Loading…
Reference in a new issue