2
0
Fork 0
mirror of https://github.com/kwsch/PKHeX synced 2024-12-26 04:13:12 +00:00
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; }
}
}