Add xmldoc

This commit is contained in:
Kurt
2025-05-23 20:44:06 -05:00
parent 1c03fc3e5b
commit 2f77b9c2aa
10 changed files with 195 additions and 42 deletions

View File

@@ -1,8 +1,20 @@
namespace PKHeX.WinForms.Controls;
/// <summary>
/// Specifies the modifier for a drag-and-drop operation.
/// </summary>
public enum DropModifier
{
/// <summary>
/// No modifier is applied.
/// </summary>
None,
/// <summary>
/// Overwrite the target slot.
/// </summary>
Overwrite,
/// <summary>
/// Clone the source slot.
/// </summary>
Clone,
}