mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-30 15:59:13 +00:00
11 lines
253 B
C#
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; }
|
|
}
|
|
}
|