mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-08 00:01:45 -05:00
18 lines
518 B
C#
18 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);
|
|
}
|
|
}
|