10 lines
228 B
C#
10 lines
228 B
C#
using UnityEditor.Experimental.GraphView;
|
|
|
|
namespace AsmdefGraph.Editor {
|
|
public class AsmdefGraphView : GraphView {
|
|
public AsmdefGraphView() : base() {
|
|
AddElement(new AsmdefNode());
|
|
}
|
|
}
|
|
}
|