mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-14 16:27:21 +00:00
4c226340fe
Keeping the 30x40 for now; might change my mind later. Kept the gmax sprites but they're unused.
17 lines
532 B
C#
17 lines
532 B
C#
namespace PKHeX.Core
|
|
{
|
|
public interface ISpriteBuilder<T>
|
|
{
|
|
T GetSprite(int species, int form, int gender, uint formarg, 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);
|
|
}
|
|
}
|