// Copyright (c) 2012-2020 Wojciech Figat. All rights reserved. using System; namespace FlaxEngine { /// /// Marks the types and members defined in unmanaged code (native C++). /// [AttributeUsage(AttributeTargets.All)] public sealed class UnmanagedAttribute : Attribute { } }