mirror of
https://github.com/osukey/osukey.git
synced 2025-07-22 19:00:05 +09:00
Reword xmldoc to make more sense
This commit is contained in:
@ -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,
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user