mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-27 22:40:22 +00:00
9401b7a790
help dat compiler minor clean elsewhere
17 lines
No EOL
350 B
C#
17 lines
No EOL
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;
|
|
}
|
|
}
|
|
} |