2021-12-23 00:08:35 +00:00
|
|
|
using System;
|
2021-12-22 00:42:01 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
2021-12-23 00:08:35 +00:00
|
|
|
namespace RhythmHeavenMania
|
2021-12-22 00:42:01 +00:00
|
|
|
{
|
2021-12-23 00:08:35 +00:00
|
|
|
[Serializable]
|
|
|
|
public class Beatmap
|
2021-12-22 00:42:01 +00:00
|
|
|
{
|
2021-12-23 00:08:35 +00:00
|
|
|
public double bpm;
|
|
|
|
public List<Entity> entities;
|
2021-12-22 00:42:01 +00:00
|
|
|
|
2021-12-23 00:08:35 +00:00
|
|
|
[Serializable]
|
|
|
|
public class Entity : ICloneable
|
|
|
|
{
|
|
|
|
public float beat;
|
|
|
|
public int track;
|
|
|
|
public string datamodel;
|
|
|
|
|
|
|
|
public object Clone()
|
|
|
|
{
|
|
|
|
return this.MemberwiseClone();
|
|
|
|
}
|
|
|
|
}
|
2021-12-22 00:42:01 +00:00
|
|
|
}
|
2021-12-23 00:08:35 +00:00
|
|
|
}
|