EntityMenuAttribute.cs 340 B

12345678910111213141516
  1. using System;
  2. namespace ET
  3. {
  4. public class EntityMenuAttribute : Attribute
  5. {
  6. public readonly Type bind_to;
  7. public readonly string menu_name;
  8. public EntityMenuAttribute(Type bind_to, string menu_name)
  9. {
  10. this.bind_to = bind_to;
  11. this.menu_name = menu_name;
  12. }
  13. }
  14. }