mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-12 06:37:20 -05:00
17 lines
350 B
C#
17 lines
350 B
C#
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Message Passing for frame results.
|
|
/// </summary>
|
|
internal readonly struct SeedFrame
|
|
{
|
|
public readonly uint PID;
|
|
public readonly int FrameID;
|
|
|
|
internal SeedFrame(uint pid, int frame)
|
|
{
|
|
PID = pid;
|
|
FrameID = frame;
|
|
}
|
|
}
|
|
} |