UIFactoryAttribute.cs 238 B

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