mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-02 18:17:09 +02:00
17 lines
544 B
C#
17 lines
544 B
C#
using System;
|
|
|
|
namespace Robust.Shared.Analyzers;
|
|
|
|
/// <summary>
|
|
/// Placed on auto-generated classes to mark to certain robust analyzers that they are auto-generated
|
|
/// and may need to be ignored (e.g. the access analyzer)
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Users should never use this attribute themselves, it silences a significant number of useful warnings and is
|
|
/// meant strictly for generated code.
|
|
/// </remarks>
|
|
[AttributeUsage(AttributeTargets.All)]
|
|
public sealed class RobustAutoGeneratedAttribute : Attribute
|
|
{
|
|
}
|