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