mirror of
https://github.com/kwsch/PKHeX
synced 2025-03-02 14:27:14 +00:00
18 lines
449 B
C#
18 lines
449 B
C#
using System.Drawing;
|
|
using PKHeX.Core;
|
|
using PKHeX.Drawing;
|
|
|
|
namespace PKHeX.WinForms
|
|
{
|
|
/// <summary>
|
|
/// Bind-able summary object that can fetch sprite and strings that summarize a <see cref="PKM"/>.
|
|
/// </summary>
|
|
public sealed class EntitySummaryImage : EntitySummary
|
|
{
|
|
public Image Sprite => pkm.Sprite();
|
|
|
|
public EntitySummaryImage(PKM p, GameStrings strings) : base(p, strings)
|
|
{
|
|
}
|
|
}
|
|
}
|