MonoPInvokeCallbackAttribute.cs 263 B

123456789101112131415
  1. using System;
  2. namespace Urho
  3. {
  4. [AttributeUsage(AttributeTargets.Method)]
  5. public sealed class MonoPInvokeCallbackAttribute : Attribute
  6. {
  7. public Type Type { get; private set; }
  8. public MonoPInvokeCallbackAttribute(Type type)
  9. {
  10. Type = type;
  11. }
  12. }
  13. }