1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-16 18:32:56 +08:00
osu-lazer/osu.Game.Rulesets.Mania/Timing/TimingSection.cs

15 lines
415 B
C#
Raw Normal View History

2017-05-10 13:56:39 +08:00
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Game.Beatmaps.Timing;
2017-05-10 16:34:43 +08:00
namespace osu.Game.Rulesets.Mania.Timing
2017-05-10 13:56:39 +08:00
{
public class TimingSection
{
public double StartTime;
public double Duration;
public double BeatLength;
public TimeSignatures TimeSignature;
}
}