mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-12 23:37:07 +00:00
aa968f56aa
Extract color util to separate class as it's not entirely image related.
14 lines
485 B
C#
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; }
|
|
}
|