mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-02 16:59:15 +00:00
9 lines
163 B
C#
9 lines
163 B
C#
|
namespace PKHeX.Core
|
|||
|
{
|
|||
|
public interface ISaveFileRevision
|
|||
|
{
|
|||
|
public int SaveRevision { get; }
|
|||
|
string SaveRevisionString { get; }
|
|||
|
}
|
|||
|
}
|