Add support for 3v3 tournament chroma key layout

This commit is contained in:
Dean Herbert
2020-05-07 14:49:58 +09:00
parent c8134162b5
commit 09759565fa
2 changed files with 82 additions and 7 deletions

View File

@ -32,5 +32,11 @@ namespace osu.Game.Tournament.Models
MinValue = 640,
MaxValue = 1366,
};
public Bindable<int> PlayersPerTeam = new BindableInt(4)
{
MinValue = 3,
MaxValue = 4,
};
}
}