mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-18 16:33:24 +00:00
bc809af06c
Allows trimmed dll usage by keeping pkm sprites in one project, and all other cosmetic UI stuff in another project
21 lines
570 B
C#
21 lines
570 B
C#
using System.Drawing;
|
|
using PKHeX.Core;
|
|
using PKHeX.Drawing.Misc.Properties;
|
|
|
|
namespace PKHeX.Drawing.Misc
|
|
{
|
|
public static class PlayerSpriteUtil
|
|
{
|
|
public static Image? Sprite(this SaveFile sav) => GetSprite(sav);
|
|
|
|
private static Image? GetSprite(SaveFile sav)
|
|
{
|
|
if (sav is SAV6XY or SAV6AO)
|
|
{
|
|
string file = $"tr_{sav.MultiplayerSpriteID:00}";
|
|
return Resources.ResourceManager.GetObject(file) as Image ?? Resources.tr_00;
|
|
}
|
|
return null;
|
|
}
|
|
}
|
|
}
|