mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-26 05:50:22 +00:00
03182ebd3d
Adds support for Scarlet & Violet. Co-Authored-By: SciresM <8676005+SciresM@users.noreply.github.com> Co-Authored-By: Matt <17801814+sora10pls@users.noreply.github.com> Co-Authored-By: Lusamine <30205550+Lusamine@users.noreply.github.com>
18 lines
674 B
C#
18 lines
674 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; }
|
|
SpriteBackgroundType ShowTeraType { get; set; }
|
|
int ShowEncounterThicknessStripe { get; set; }
|
|
byte ShowEncounterOpacityBackground { get; set; }
|
|
byte ShowEncounterOpacityStripe { get; set; }
|
|
bool ShowExperiencePercent { get; set; }
|
|
int ShowTeraThicknessStripe { get; set; }
|
|
byte ShowTeraOpacityBackground { get; set; }
|
|
byte ShowTeraOpacityStripe { get; set; }
|
|
}
|