Fix some warnings.

This commit is contained in:
Dean Herbert
2016-11-04 15:40:05 +09:00
parent 71045169f6
commit bc53642cab
2 changed files with 5 additions and 2 deletions

View File

@ -13,6 +13,11 @@ namespace osu.Game.Beatmaps.Timing
{
public double BeatLength;
public TimingChange(double beatLength)
{
BeatLength = beatLength;
}
public double BPM => 60000 / BeatLength;
}
}