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