mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 14:19:34 +08:00
14 lines
319 B
C#
14 lines
319 B
C#
namespace osu.Game.Tournament.Screens.Ladder.Components
|
|
{
|
|
/// <summary>
|
|
/// Conditions governing a tournament.
|
|
/// </summary>
|
|
public class TournamentConditions
|
|
{
|
|
/// <summary>
|
|
/// How many matches before a winner is decided.
|
|
/// </summary>
|
|
public int BestOf;
|
|
}
|
|
}
|