| 12345678910111213141516171819202122232425262728 |
- #if ODIN_INSPECTOR
- using System;
- namespace ET.PackageManager.Editor
- {
- public class ETPackageMenuAttribute : Attribute
- {
- public string MenuName;
- public int Order;
- public ETPackageMenuAttribute(string menuName, int order = 0)
- {
- MenuName = menuName;
- Order = order;
- }
- }
- public class ETPackageAutoMenuData
- {
- public Type Type;
- public string MenuName;
- public int Order;
- }
- }
- #endif
|