mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 00:37:11 +00:00
17 lines
518 B
C#
17 lines
518 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,
|
|
bool isAltShiny = false);
|
|
|
|
T GetSprite(T baseSprite, int species, int heldItem, bool isEgg, bool isShiny,
|
|
int generation = -1,
|
|
bool isBoxBGRed = false,
|
|
bool isAltShiny = false);
|
|
|
|
void Initialize(SaveFile sav);
|
|
}
|
|
}
|