2019-07-13 17:43:05 -07:00
|
|
|
using System.Drawing;
|
|
|
|
using PKHeX.Core;
|
2019-09-29 09:47:06 -07:00
|
|
|
using PKHeX.Drawing;
|
2019-07-13 17:43:05 -07:00
|
|
|
|
|
|
|
namespace PKHeX.WinForms
|
|
|
|
{
|
|
|
|
/// <summary>
|
2020-06-16 21:46:22 -05:00
|
|
|
/// Bind-able summary object that can fetch sprite and strings that summarize a <see cref="PKM"/>.
|
2019-07-13 17:43:05 -07:00
|
|
|
/// </summary>
|
2020-09-07 13:51:13 -07:00
|
|
|
public sealed class PKMSummaryImage : PKMSummary
|
2019-07-13 17:43:05 -07:00
|
|
|
{
|
|
|
|
public Image Sprite => pkm.Sprite();
|
|
|
|
|
|
|
|
public PKMSummaryImage(PKM p, GameStrings strings) : base(p, strings)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|