HeavenStudioPlus/Assets/Scripts/Util/GameEvent.cs

10 lines
201 B
C#
Raw Normal View History

namespace HeavenStudio.Util
{
public class GameEvent
{
public float length;
public double startBeat;
public double lastReportedBeat;
2022-01-24 02:15:23 +00:00
public bool enabled;
}
}