Add `[NotNull]`

This commit is contained in:
ekrctb 2021-07-19 20:20:10 +09:00
parent 7201cfe0b4
commit 41169fbdaf
1 changed files with 1 additions and 1 deletions

View File

@ -133,7 +133,7 @@ public bool Dashing
private readonly DrawablePool<CaughtBanana> caughtBananaPool;
private readonly DrawablePool<CaughtDroplet> caughtDropletPool;
public Catcher([NotNull] Container trailsTarget, DroppedObjectContainer droppedObjectTarget, BeatmapDifficulty difficulty = null)
public Catcher([NotNull] Container trailsTarget, [NotNull] DroppedObjectContainer droppedObjectTarget, BeatmapDifficulty difficulty = null)
{
this.trailsTarget = trailsTarget;
this.droppedObjectTarget = droppedObjectTarget;