Skip to content

Commit

Permalink
fix: Rider complains about [ParameterProviderFor] classes being unu…
Browse files Browse the repository at this point in the history
…sed (#236)
  • Loading branch information
bdunderscore committed May 12, 2024
1 parent eade438 commit 3f94e1f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Editor/VRChat/ParameterIntrospection/IParameterProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
using System;
using System.Collections.Generic;
using System.Collections.Immutable;
using JetBrains.Annotations;
using UnityEngine;

#endregion
Expand Down Expand Up @@ -220,6 +221,7 @@ object ICloneable.Clone()
/// here. This constructor will be invoked when querying a component's parameters.
/// </summary>
[AttributeUsage(AttributeTargets.Class)]
[MeansImplicitUse(ImplicitUseKindFlags.InstantiatedWithFixedConstructorSignature)]
public sealed class ParameterProviderFor : Attribute
{
public Type ForType { get; private set; }
Expand Down

0 comments on commit 3f94e1f

Please sign in to comment.