NativeFunctionAttribute.cs 369 B

123456789101112131415
  1. using System;
  2. namespace UMP.Wrappers
  3. {
  4. [AttributeUsage(AttributeTargets.Delegate, AllowMultiple = false)]
  5. internal sealed class NativeFunctionAttribute : Attribute
  6. {
  7. public string FunctionName { get; private set; }
  8. public NativeFunctionAttribute(string functionName)
  9. {
  10. FunctionName = functionName;
  11. }
  12. }
  13. }