15 lines
328 B
C#
15 lines
328 B
C#
// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved.
|
|
|
|
using System;
|
|
|
|
namespace FlaxEngine
|
|
{
|
|
/// <summary>
|
|
/// Marks the types and members defined in unmanaged code (native C++).
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.All)]
|
|
public sealed class UnmanagedAttribute : Attribute
|
|
{
|
|
}
|
|
}
|