12345678910111213141516171819 |
- namespace Pathfinding {
-
- [System.AttributeUsage(System.AttributeTargets.All, Inherited = false, AllowMultiple = true)]
- public class CustomGraphEditorAttribute : System.Attribute {
-
- public System.Type graphType;
-
- public string displayName;
-
- public System.Type editorType;
- public CustomGraphEditorAttribute (System.Type t, string displayName) {
- graphType = t;
- this.displayName = displayName;
- }
- }
- }
|