1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 20:47:28 +08:00

Move TouchDevice mod to new "system" category

This commit is contained in:
Dean Herbert 2019-07-23 13:11:06 +09:00
parent 452b2c8027
commit d5ee4cbc9c
2 changed files with 4 additions and 1 deletions

View File

@ -11,6 +11,8 @@ namespace osu.Game.Rulesets.Osu.Mods
public override string Acronym => "TD";
public override double ScoreMultiplier => 1;
public override ModType Type => ModType.System;
public override bool Ranked => true;
}
}

View File

@ -9,6 +9,7 @@ namespace osu.Game.Rulesets.Mods
DifficultyIncrease,
Conversion,
Automation,
Fun
Fun,
System
}
}