mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 00:37:11 +00:00
66f082e4a0
Closes #2145
15 lines
444 B
C#
15 lines
444 B
C#
namespace PKHeX.Core
|
|
{
|
|
public interface ISpriteBuilder<T>
|
|
{
|
|
T GetSprite(int species, int form, int gender, int heldItem, bool isEgg, bool isShiny,
|
|
int generation = -1,
|
|
bool isBoxBGRed = false);
|
|
|
|
T GetSprite(T baseSprite, int species, int heldItem, bool isEgg, bool isShiny,
|
|
int generation = -1,
|
|
bool isBoxBGRed = false);
|
|
|
|
void Initialize(SaveFile sav);
|
|
}
|
|
}
|