mirror of
https://github.com/kwsch/PKHeX
synced 2025-02-17 05:48:44 +00:00
Add more xmldoc Move files/functions to better spot Less allocation on hover glow fix honeytree dppt group/slot/shake rand call (ty real.96)
17 lines
463 B
C#
17 lines
463 B
C#
namespace PKHeX.Core;
|
|
|
|
/// <summary>
|
|
/// Exposes information to differentiate the save file from other patches of the same game.
|
|
/// </summary>
|
|
public interface ISaveFileRevision
|
|
{
|
|
/// <summary>
|
|
/// Incremented magic number to differentiate feature sets available.
|
|
/// </summary>
|
|
int SaveRevision { get; }
|
|
|
|
/// <summary>
|
|
/// Magic string to differentiate feature sets available.
|
|
/// </summary>
|
|
string SaveRevisionString { get; }
|
|
}
|