mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-17 01:28:00 +00:00
17 lines
No EOL
410 B
C#
17 lines
No EOL
410 B
C#
using System.Drawing;
|
|
using PKHeX.Core;
|
|
|
|
namespace PKHeX.WinForms
|
|
{
|
|
/// <summary>
|
|
/// Bindable summary object that can fetch sprite and strings that summarize a <see cref="PKM"/>.
|
|
/// </summary>
|
|
public class PKMSummaryImage : PKMSummary
|
|
{
|
|
public Image Sprite => pkm.Sprite();
|
|
|
|
public PKMSummaryImage(PKM p, GameStrings strings) : base(p, strings)
|
|
{
|
|
}
|
|
}
|
|
} |