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