mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-04-01 23:16:42 -05:00
#3933 3. top level settings for Report 1. was already implemented with the file namer settings on dump not sure how I want to do dragdrop-multi, but I did recently add a record type for `ConcatenatedEntitySet`...
17 lines
564 B
C#
17 lines
564 B
C#
using System.Diagnostics.CodeAnalysis;
|
|
using System.Drawing;
|
|
using PKHeX.Core;
|
|
using PKHeX.Drawing.PokeSprite;
|
|
|
|
namespace PKHeX.WinForms;
|
|
|
|
/// <summary>
|
|
/// Bind-able summary object that can fetch sprite and strings that summarize a <see cref="PKM"/>.
|
|
/// </summary>
|
|
[DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.PublicProperties)]
|
|
public sealed class EntitySummaryImage(PKM pk, GameStrings strings, string Position) : EntitySummary(pk, strings)
|
|
{
|
|
public Image Sprite => Entity.Sprite();
|
|
public override string Position { get; } = Position;
|
|
}
|