mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-11 21:22:41 +00: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; }
|
|||
|
}
|
|||
|
}
|