This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// GlobalSuppressions for Overdrive.ProBuilderPlus | |
using System.Diagnostics.CodeAnalysis; | |
// Matters of Taste | |
[assembly: SuppressMessage("Style", "IDE0007:Use implicit type", Justification = "<Pending>", Scope = "namespaceanddescendants", Target = "~N:Overdrive")] | |
[assembly: SuppressMessage("Style", "IDE0009:Member access should be qualified.", Justification = "<Pending>", Scope = "namespaceanddescendants", Target = "~N:Overdrive")] | |
[assembly: SuppressMessage("Style", "IDE0011:Add braces", Justification = "<Pending>", Scope = "namespaceanddescendants", Target = "~N:Overdrive")] | |
[assembly: SuppressMessage("Style", "IDE0017:Simplify object initialization", Justification = "<Pending>", Scope = "namespaceanddescendants", Target = "~N:Overdrive")] | |
[assembly: SuppressMessage("Style", "IDE0025:Use expression body for property", Justification = "<Pending>", Scope = "namespaceanddescendants", Target = "~N:Overdrive")] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace CortiWins | |
{ | |
/// <summary> | |
/// Comment used by the <see cref="CortiCommentEditor"/>. | |
/// Used to attach comments to a MonoBehaviour. | |
/// </summary> | |
[System.AttributeUsage(System.AttributeTargets.Class, AllowMultiple = false)] | |
public class CommentAttribute : System.Attribute | |
{ | |
/// <summary> |