mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-08 18:55:07 +00:00
25 lines
No EOL
494 B
C#
25 lines
No EOL
494 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace RhythmHeavenMania
|
|
{
|
|
[Serializable]
|
|
public class Beatmap
|
|
{
|
|
public double bpm;
|
|
public List<Entity> entities;
|
|
|
|
[Serializable]
|
|
public class Entity : ICloneable
|
|
{
|
|
public float beat;
|
|
public int track;
|
|
public string datamodel;
|
|
|
|
public object Clone()
|
|
{
|
|
return this.MemberwiseClone();
|
|
}
|
|
}
|
|
}
|
|
} |