2018-01-05 20:21:19 +09:00
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2017-04-21 17:33:20 +09:00
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mods
|
|
|
|
{
|
|
|
|
public class MultiMod : Mod
|
|
|
|
{
|
|
|
|
public override string Name => string.Empty;
|
2017-08-13 17:41:13 +02:00
|
|
|
public override string ShortenedName => string.Empty;
|
2017-04-21 17:33:20 +09:00
|
|
|
public override string Description => string.Empty;
|
2018-03-13 20:07:03 -07:00
|
|
|
public override double ScoreMultiplier => 0;
|
2017-04-21 17:33:20 +09:00
|
|
|
|
|
|
|
public Mod[] Mods;
|
|
|
|
}
|
2018-01-05 20:21:19 +09:00
|
|
|
}
|