mirror of
https://github.com/ppy/osu.git
synced 2025-01-12 21:43:22 +08:00
Revert "remove #nullable disable
in LadderInfo
"
This reverts commit 0dced46100
.
This commit is contained in:
parent
a3cd0d14a3
commit
e02a06e3e5
@ -1,6 +1,8 @@
|
|||||||
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
||||||
// See the LICENCE file in the repository root for full licence text.
|
// See the LICENCE file in the repository root for full licence text.
|
||||||
|
|
||||||
|
#nullable disable
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
@ -25,7 +27,7 @@ namespace osu.Game.Tournament.Models
|
|||||||
public List<TournamentProgression> Progressions = new List<TournamentProgression>();
|
public List<TournamentProgression> Progressions = new List<TournamentProgression>();
|
||||||
|
|
||||||
[JsonIgnore] // updated manually in TournamentGameBase
|
[JsonIgnore] // updated manually in TournamentGameBase
|
||||||
public Bindable<TournamentMatch?> CurrentMatch = new Bindable<TournamentMatch?>();
|
public Bindable<TournamentMatch> CurrentMatch = new Bindable<TournamentMatch>();
|
||||||
|
|
||||||
public Bindable<int> ChromaKeyWidth = new BindableInt(1024)
|
public Bindable<int> ChromaKeyWidth = new BindableInt(1024)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user