mirror of
https://github.com/boudji-ludwig-pett/cnam-geometry-dash.git
synced 2025-12-11 00:27:48 +01:00
feat: json loader (Work In Progress)
This commit is contained in:
16
Assets/Scripts/Level.cs
Normal file
16
Assets/Scripts/Level.cs
Normal 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; }
|
||||
}
|
||||
Reference in New Issue
Block a user