PKHeX/PKHeX.WinForms/Subforms/Misc/PKMSummaryImage.cs
Kurt 5d3bc289b6 seal hunting
Mark things as sealed as they shouldn't be inherited from or overriden in a derived class.
2020-09-07 13:51:13 -07:00

18 lines
No EOL
439 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 PKMSummaryImage : PKMSummary
{
public Image Sprite => pkm.Sprite();
public PKMSummaryImage(PKM p, GameStrings strings) : base(p, strings)
{
}
}
}