1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-06 21:57:19 +08:00

50 lines
1.4 KiB
C#
Raw Normal View History

2017-02-16 16:05:03 -04:00
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Game.Graphics;
using System;
2017-02-16 16:05:03 -04:00
2017-04-18 16:05:58 +09:00
namespace osu.Game.Rulesets.Mods
2017-02-16 16:05:03 -04:00
{
2017-02-23 07:59:27 -04:00
/// <summary>
/// The base class for gameplay modifiers.
/// </summary>
public abstract class Mod
2017-02-16 16:05:03 -04:00
{
2017-02-23 07:57:58 -04:00
/// <summary>
/// The name of this mod.
/// </summary>
public abstract string Name { get; }
2017-02-23 07:57:58 -04:00
/// <summary>
/// The icon of this mod.
/// </summary>
public virtual FontAwesome Icon => FontAwesome.fa_question;
2017-02-23 07:57:58 -04:00
2017-05-02 21:36:55 +03:00
/// <summary>
/// The type of this mod.
/// </summary>
public virtual ModType Type => ModType.Special;
2017-02-23 07:57:58 -04:00
/// <summary>
2017-03-01 20:57:33 -04:00
/// The user readable description of this mod.
2017-02-23 07:57:58 -04:00
/// </summary>
public virtual string Description => string.Empty;
2017-02-23 07:57:58 -04:00
/// <summary>
2017-03-01 20:57:33 -04:00
/// The score multiplier of this mod.
2017-02-23 07:57:58 -04:00
/// </summary>
2017-03-01 20:57:33 -04:00
public abstract double ScoreMultiplier { get; }
2017-02-23 07:57:58 -04:00
/// <summary>
2017-03-01 20:57:33 -04:00
/// Returns if this mod is ranked.
2017-02-23 07:57:58 -04:00
/// </summary>
public virtual bool Ranked => false;
2017-02-23 07:57:58 -04:00
/// <summary>
2017-03-01 20:57:33 -04:00
/// The mods this mod cannot be enabled with.
2017-02-23 07:57:58 -04:00
/// </summary>
public virtual Type[] IncompatibleMods => new Type[] { };
}
2017-03-01 20:57:33 -04:00
}