mirror of
https://github.com/osukey/osukey.git
synced 2025-06-24 20:57:56 +09: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;
|
|
}
|
|
}
|