mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-21 05:09:35 -05:00
12 lines
253 B
C#
12 lines
253 B
C#
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Provides details about the save file's Game Sync identifier.
|
|
/// </summary>
|
|
public interface IGameSync
|
|
{
|
|
int GameSyncIDSize { get; }
|
|
string GameSyncID { get; set; }
|
|
}
|
|
}
|