From 6b6a5172148251de06f0dc1fd8d2dd4bef7db078 Mon Sep 17 00:00:00 2001 From: Kurt Date: Thu, 10 Jun 2021 18:14:38 -0700 Subject: [PATCH] Add xmldoc Add some xmldoc to summarize recent changes to these properties. See: Co-Authored-By: LukeThe <54759100+LukeThe@users.noreply.github.com> #3213 #3215 --- PKHeX.Drawing/Sprites/SpriteBuilder.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/PKHeX.Drawing/Sprites/SpriteBuilder.cs b/PKHeX.Drawing/Sprites/SpriteBuilder.cs index f8403e3c2..65eff7df0 100644 --- a/PKHeX.Drawing/Sprites/SpriteBuilder.cs +++ b/PKHeX.Drawing/Sprites/SpriteBuilder.cs @@ -8,12 +8,18 @@ namespace PKHeX.Drawing { public static bool ShowEggSpriteAsItem { get; set; } = true; + /// Width of the generated Sprite image. public abstract int Width { get; } + /// Height of the generated Sprite image. public abstract int Height { get; } + /// Minimum amount of padding on the right side of the image when layering an item sprite. protected abstract int ItemShiftX { get; } + /// Minimum amount of padding on the bottom side of the image when layering an item sprite. protected abstract int ItemShiftY { get; } + /// Max width / height of an item image. protected abstract int ItemMaxSize { get; } + protected abstract int EggItemShiftX { get; } protected abstract int EggItemShiftY { get; }