Files
FlowScope/Packages/com.flowscope.gamecore/Runtime/Save/ISaveMigration.cs
2026-06-04 14:54:49 +08:00

12 lines
207 B
C#

namespace FlowScope.Save
{
public interface ISaveMigration
{
string Key { get; }
int FromVersion { get; }
int ToVersion { get; }
string Migrate(string json);
}
}