ExecuteBeforeAttribute.cs 288 B

123456789101112131415
  1. using System;
  2. namespace Leap.Unity
  3. {
  4. [AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
  5. public class ExecuteBeforeAttribute : Attribute
  6. {
  7. public ExecuteBeforeAttribute(Type beforeType)
  8. {
  9. this.beforeType = beforeType;
  10. }
  11. public readonly Type beforeType;
  12. }
  13. }