mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-26 14:00:21 +00:00
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:
parent
f266b4f686
commit
6b6a517214
1 changed files with 6 additions and 0 deletions
|
@ -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; }
|
||||
|
||||
|
|
Loading…
Reference in a new issue