PKHeX/PKHeX.Core/Saves/Substructures/Misc/ISaveFileRevision.cs
Kurt 10c5adadb8 Misc tweaks
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)
2024-02-03 14:11:17 -06:00

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