mirror of
https://github.com/RHeavenStudio/HeavenStudio.git
synced 2025-04-30 17:44:32 +02:00
25 lines
494 B
C#
25 lines
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();
|
|
}
|
|
}
|
|
}
|
|
} |