// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Diagnostics; namespace SDL { /// /// Denotes a manually implemented macro function. /// Such functions should be excluded from ClangSharp generation to prevent warnings. /// [AttributeUsage(AttributeTargets.Method)] [Conditional("NEVER")] internal class MacroAttribute : Attribute; }