♻️ reworked and debugged the SaveSystem. Removed unnecessary scene reference.

This commit is contained in:
2025-11-25 14:39:31 +01:00
parent 638ebaff46
commit e9cd4ce276
5 changed files with 27 additions and 32 deletions
+1 -2
View File
@@ -18,12 +18,11 @@ public class SaveData
return VERSION == version;
}
public string SceneName;
public string Id;
public string JsonPayload;
public string ToString()
{
return SceneName + " " + Id + " " + JsonPayload;
return Id + " " + JsonPayload;
}
}