🚧 saving of field parameters as json implemented
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
|
||||
namespace Babushka.scripts.CSharp.Common.Savegame;
|
||||
|
||||
[Serializable]
|
||||
public class SaveData
|
||||
{
|
||||
public string SceneName;
|
||||
public string Id;
|
||||
public string JsonPayload;
|
||||
|
||||
public string ToString()
|
||||
{
|
||||
return SceneName + " " + Id + " " + JsonPayload;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user