mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-04-26 02:29:59 -05: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)
18 lines
463 B
C#
18 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; }
|
|
}
|