mirror of
https://github.com/ppy/osu
synced 2025-02-14 00:57:27 +00: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;
|
||
|
}
|
||
|
}
|