PKHeX/PKHeX.Core/Saves/Substructures/Misc/ISaveFileRevision.cs
Kurt efc17a1271 Add interface for revised savefile types (patches)
SWSH is the first common savefile type that has different revisions after official patches. We want to indicate in the Program Title which revision we're currently editing, because people still are not editing latest-format saves and complaining y no urshifu.

Use short descriptions to indicate revision (Base, IoA, CT), rather than magic numbers (v0/v1) or 1.X or 1.X.Y+, because GameFreak can't follow semver rules.

go away ranch platinum update, i might handle you another time
2020-09-25 23:41:20 -07:00

8 lines
163 B
C#

namespace PKHeX.Core
{
public interface ISaveFileRevision
{
public int SaveRevision { get; }
string SaveRevisionString { get; }
}
}