2021-12-10 08:15:04 +00:00
|
|
|
|
namespace PKHeX.Drawing.PokeSprite;
|
|
|
|
|
|
|
|
|
|
public interface ISpriteSettings
|
2021-11-27 23:48:08 +00:00
|
|
|
|
{
|
2021-12-10 08:15:04 +00:00
|
|
|
|
bool ShowEggSpriteAsHeldItem { get; set; }
|
|
|
|
|
bool ShowEncounterBall { get; set; }
|
2021-11-27 23:48:08 +00:00
|
|
|
|
|
2021-12-10 08:15:04 +00:00
|
|
|
|
SpriteBackgroundType ShowEncounterColor { get; set; }
|
|
|
|
|
SpriteBackgroundType ShowEncounterColorPKM { get; set; }
|
|
|
|
|
int ShowEncounterThicknessStripe { get; set; }
|
|
|
|
|
byte ShowEncounterOpacityBackground { get; set; }
|
|
|
|
|
byte ShowEncounterOpacityStripe { get; set; }
|
|
|
|
|
bool ShowExperiencePercent { get; set; }
|
2021-11-27 23:48:08 +00:00
|
|
|
|
}
|