PKHeX/PKHeX.Drawing.PokeSprite/Builder/ISpriteSettings.cs
Kurt bc809af06c Split PKHeX.Drawing into subprojects
Allows trimmed dll usage by keeping pkm sprites in one project, and all other cosmetic UI stuff in another project
2021-11-27 15:48:08 -08:00

15 lines
531 B
C#

namespace PKHeX.Drawing.PokeSprite
{
public interface ISpriteSettings
{
bool ShowEggSpriteAsHeldItem { get; set; }
bool ShowEncounterBall { get; set; }
SpriteBackgroundType ShowEncounterColor { get; set; }
SpriteBackgroundType ShowEncounterColorPKM { get; set; }
int ShowEncounterThicknessStripe { get; set; }
byte ShowEncounterOpacityBackground { get; set; }
byte ShowEncounterOpacityStripe { get; set; }
bool ShowExperiencePercent { get; set; }
}
}