mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-10 11:45:09 +00:00
30 lines
No EOL
897 B
C#
30 lines
No EOL
897 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace RhythmHeavenMania
|
|
{
|
|
[Serializable]
|
|
public class Beatmap
|
|
{
|
|
public float bpm;
|
|
public List<Entity> entities = new List<Entity>();
|
|
|
|
[Serializable]
|
|
public class Entity : ICloneable
|
|
{
|
|
public float beat;
|
|
public int track;
|
|
[JsonProperty(DefaultValueHandling = DefaultValueHandling.Ignore)] public float length;
|
|
[JsonProperty(DefaultValueHandling = DefaultValueHandling.Ignore)] public float valA;
|
|
[JsonProperty(DefaultValueHandling = DefaultValueHandling.Ignore)] public int type;
|
|
public string datamodel;
|
|
[JsonIgnore] public Editor.TimelineEventObj eventObj;
|
|
|
|
public object Clone()
|
|
{
|
|
return this.MemberwiseClone();
|
|
}
|
|
}
|
|
}
|
|
} |