PKHeX/PKHeX.Drawing.PokeSprite/Builder/ISpriteSettings.cs
Kurt aa968f56aa File scoped namespace for drawing projects
Extract color util to separate class as it's not entirely image related.
2021-12-10 00:15:04 -08:00

14 lines
485 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; }
}