mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 07:06:35 +09:00
Use protected constructors
This commit is contained in:
@ -18,7 +18,7 @@ namespace osu.Game.Rulesets.Mods
|
||||
private readonly BindableNumber<double> tempoAdjust = new BindableDouble(1);
|
||||
private readonly BindableNumber<double> freqAdjust = new BindableDouble(1);
|
||||
|
||||
public ModDaycore()
|
||||
protected ModDaycore()
|
||||
{
|
||||
SpeedChange.BindValueChanged(val =>
|
||||
{
|
||||
|
@ -19,7 +19,7 @@ namespace osu.Game.Rulesets.Mods
|
||||
private readonly BindableNumber<double> tempoAdjust = new BindableDouble(1);
|
||||
private readonly BindableNumber<double> freqAdjust = new BindableDouble(1);
|
||||
|
||||
public ModNightcore()
|
||||
protected ModNightcore()
|
||||
{
|
||||
SpeedChange.BindValueChanged(val =>
|
||||
{
|
||||
|
Reference in New Issue
Block a user