feat: json loader (Work In Progress)

This commit is contained in:
2025-02-03 16:56:46 +01:00
parent 51404e5cc6
commit ed5d3cd222
9 changed files with 154 additions and 93 deletions

16
Assets/Scripts/Level.cs Normal file
View File

@ -0,0 +1,16 @@
using System.Runtime.Serialization;
[DataContract]
public class Level
{
[DataMember]
public string Name { get; set; }
[DataMember]
public string MusicPath { get; set; }
[DataMember]
public int TotalJumps { get; set; }
public int TotalAttempts { get; set; }
public int KilledCount { get; set; }
}

View File

@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: d646b99f5a21a91c88669a5e4d774f06