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
This commit is contained in:
Kurt 2021-06-10 18:14:38 -07:00
parent f266b4f686
commit 6b6a517214

View file

@ -8,12 +8,18 @@ namespace PKHeX.Drawing
{
public static bool ShowEggSpriteAsItem { get; set; } = true;
/// <summary> Width of the generated Sprite image. </summary>
public abstract int Width { get; }
/// <summary> Height of the generated Sprite image. </summary>
public abstract int Height { get; }
/// <summary> Minimum amount of padding on the right side of the image when layering an item sprite. </summary>
protected abstract int ItemShiftX { get; }
/// <summary> Minimum amount of padding on the bottom side of the image when layering an item sprite. </summary>
protected abstract int ItemShiftY { get; }
/// <summary> Max width / height of an item image. </summary>
protected abstract int ItemMaxSize { get; }
protected abstract int EggItemShiftX { get; }
protected abstract int EggItemShiftY { get; }