PKHeX/PKHeX.Core/Saves/Substructures/Misc/IGameSync.cs
2020-10-31 11:43:57 -07:00

11 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; }
}
}