mirror of
https://github.com/ppy/osu.git
synced 2025-02-05 10:52:54 +08:00
18 lines
565 B
C#
18 lines
565 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 TaikoDifficultyHitObjectRhythm(int numerator, int denominator, double difficulty)
|
|
{
|
|
Ratio = numerator / (double)denominator;
|
|
Difficulty = difficulty;
|
|
}
|
|
}
|
|
}
|