PKHeX/PKHeX.Core/Saves/Substructures/Misc/ISaveFileRevision.cs
Kurt 6243135f28 Minor clean
Move Home8 location to Locations.cs for documentation
Move FestaFacility to correct folder
Remove unnecessary public modifier on interface method
Pass the program's Version to any loaded plugins, if they wanted to check compatibility...?
2020-09-25 23:55:31 -07:00

8 lines
156 B
C#

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