feat: save the stats in a separated json (#38)

This commit is contained in:
2025-03-03 09:33:58 +01:00
committed by GitHub
parent 827c867052
commit ce92ba53cc
9 changed files with 66 additions and 10 deletions

View File

@ -4,11 +4,11 @@ using UnityEngine;
public class Level
{
public string JsonName { get; set; }
public int TotalJumps { get; set; }
public int TotalAttempts { get; set; }
public string name;
public string musicName;
public int totalJumps;
public int totalAttempts;
public int order;
public static Level CreateFromJSON(string jsonString)