mirror of
https://github.com/boudji-ludwig-pett/cnam-geometry-dash.git
synced 2025-06-27 11:58:51 +02: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; }
|
||||
}
|
2
Assets/Scripts/Level.cs.meta
Normal file
2
Assets/Scripts/Level.cs.meta
Normal file
@ -0,0 +1,2 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d646b99f5a21a91c88669a5e4d774f06
|
Reference in New Issue
Block a user