mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-27 22:40:22 +00:00
11 lines
202 B
C#
11 lines
202 B
C#
|
namespace PKHeX.Core
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Message Passing for frame results.
|
|||
|
/// </summary>
|
|||
|
internal struct SeedFrame
|
|||
|
{
|
|||
|
public uint PID;
|
|||
|
public int FrameID;
|
|||
|
}
|
|||
|
}
|