Return TouchDevice in GetAllMods response

This commit is contained in:
Dean Herbert 2019-07-23 13:12:17 +09:00
parent d5ee4cbc9c
commit f8feac792c
1 changed files with 6 additions and 0 deletions

View File

@ -138,6 +138,12 @@ public override IEnumerable<Mod> GetModsFor(ModType type)
new MultiMod(new ModWindUp<OsuHitObject>(), new ModWindDown<OsuHitObject>()),
};
case ModType.System:
return new Mod[]
{
new OsuModTouchDevice(),
};
default:
return new Mod[] { };
}