mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-07-14 16:01:10 -05:00
21 lines
397 B
C#
21 lines
397 B
C#
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,
|
|
}
|