2
0

RectangleNodeViewModel.cs 304 B

123456789
  1. using PixiEditor.ChangeableDocument.Changeables.Graph.Nodes.Shapes;
  2. using PixiEditor.ViewModels.Nodes;
  3. namespace PixiEditor.ViewModels.Document.Nodes.Shapes;
  4. [NodeViewModel("RECTANGLE_NODE", "SHAPE", PixiPerfectIcons.Square)]
  5. internal class RectangleNodeViewModel : NodeViewModel<RectangleNode>
  6. {
  7. }