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 namespace osu.Game.Rulesets.Mods
{ {
/// <summary> /// <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> /// </summary>
public enum ModUsage public enum ModUsage
{ {
/// <summary> /// <summary>
/// In a solo gameplay session. /// Used for a per-user gameplay session. Determines whether the mod is playable by an end user.
/// </summary> /// </summary>
User, User,
/// <summary> /// <summary>
/// In a multiplayer match, as a required mod. /// Used as a "required mod" for a multiplayer match.
/// </summary> /// </summary>
MultiplayerRequired, MultiplayerRequired,
/// <summary> /// <summary>
/// In a multiplayer match, as a "free" mod. /// Used as a "free mod" for a multiplayer match.
/// </summary> /// </summary>
MultiplayerFree, MultiplayerFree,
} }