1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-12 17:43:05 +08:00

Reword xmldoc to make more sense

This commit is contained in:
Salman Ahmed 2022-03-20 06:37:08 +03:00
parent 70e943fbcc
commit 820a672940

View File

@ -4,22 +4,22 @@
namespace osu.Game.Rulesets.Mods
{
/// <summary>
/// The usage of this mod to determine its playability.
/// The usage of this mod to determine whether it's playable in such context.
/// </summary>
public enum ModUsage
{
/// <summary>
/// In a solo gameplay session.
/// Used for a per-user gameplay session. Determines whether the mod is playable by an end user.
/// </summary>
User,
/// <summary>
/// In a multiplayer match, as a required mod.
/// Used as a "required mod" for a multiplayer match.
/// </summary>
MultiplayerRequired,
/// <summary>
/// In a multiplayer match, as a "free" mod.
/// Used as a "free mod" for a multiplayer match.
/// </summary>
MultiplayerFree,
}