// 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 C typedef that is expressed as an enum in C#. /// These need to be manually signaled to ClangSharp so it uses the custom enum type instead of the underlying type. /// Handled by get_typedefs() in generate_bindings.py. /// [AttributeUsage(AttributeTargets.Enum)] [Conditional("NEVER")] public class TypedefAttribute : Attribute; }