// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. namespace osu.Game.Rulesets.Mods { /// /// The usage of this mod to determine whether it's playable in such context. /// public enum ModUsage { /// /// Used for a per-user gameplay session. Determines whether the mod is playable by an end user. /// User, /// /// Used as a "required mod" for a multiplayer match. /// MultiplayerRequired, /// /// Used as a "free mod" for a multiplayer match. /// MultiplayerFree, } }