mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
19 lines
404 B
C#
19 lines
404 B
C#
using System;
|
|
|
|
#if ROBUST_ANALYZERS_IMPL
|
|
namespace Robust.Shared.Analyzers.Implementation;
|
|
#else
|
|
namespace Robust.Shared.Analyzers;
|
|
#endif
|
|
|
|
[AttributeUsage(AttributeTargets.Method)]
|
|
public sealed class PreferNonGenericVariantForAttribute : Attribute
|
|
{
|
|
public readonly Type[] ForTypes;
|
|
|
|
public PreferNonGenericVariantForAttribute(params Type[] forTypes)
|
|
{
|
|
ForTypes = forTypes;
|
|
}
|
|
}
|