mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-04-26 02:29:59 -05:00
With the new version of Visual Studio bringing C# 12, we can revise our logic for better readability as well as use new methods/APIs introduced in the .NET 8.0 BCL.
19 lines
484 B
C#
19 lines
484 B
C#
namespace PKHeX.Core;
|
|
|
|
/// <summary>
|
|
/// Indicates where the slot data originated from.
|
|
/// </summary>
|
|
public enum SlotOrigin : byte
|
|
{
|
|
/// <summary>
|
|
/// Slot data originated from the Party, or follows "party format" data rules.
|
|
/// </summary>
|
|
/// <remarks>Some games do not permit forms to exist outside the party.</remarks>
|
|
Party = 0,
|
|
|
|
/// <summary>
|
|
/// Slot data originated from the Box, or follows "stored" data rules.
|
|
/// </summary>
|
|
Box = 1,
|
|
}
|