mirror of
https://github.com/ppy/osu
synced 2025-02-03 03:42:15 +00:00
20 lines
652 B
C#
20 lines
652 B
C#
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
namespace osu.Game.Rulesets.Taiko.Difficulty.Preprocessing
|
|
{
|
|
public class TaikoDifficultyHitObjectRhythm
|
|
{
|
|
public readonly double Difficulty;
|
|
public readonly double Ratio;
|
|
public readonly bool IsRepeat;
|
|
|
|
public TaikoDifficultyHitObjectRhythm(int numerator, int denominator, double difficulty, bool isRepeat)
|
|
{
|
|
Ratio = numerator / (double)denominator;
|
|
Difficulty = difficulty;
|
|
IsRepeat = isRepeat;
|
|
}
|
|
}
|
|
}
|