Files
ZHGD_Web/Assets/UniversalMediaPlayer/Scripts/Sources/Wrappers/NativeFunctionAttribute.cs
2025-07-13 23:16:20 +08:00

16 lines
369 B
C#

using System;
namespace UMP.Wrappers
{
[AttributeUsage(AttributeTargets.Delegate, AllowMultiple = false)]
internal sealed class NativeFunctionAttribute : Attribute
{
public string FunctionName { get; private set; }
public NativeFunctionAttribute(string functionName)
{
FunctionName = functionName;
}
}
}