HeavenStudio/Assets/Scripts/GameEvent.cs
2022-01-23 21:15:23 -05:00

10 lines
199 B
C#

namespace RhythmHeavenMania
{
public class GameEvent
{
public float length;
public float startBeat;
public float lastReportedBeat;
public bool enabled;
}
}