mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-08-27 04:26:15 -05: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:
@@ -8,12 +8,18 @@ public abstract class SpriteBuilder : ISpriteBuilder<Image>
|
||||
{
|
||||
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; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user