tbf/SchematicDrawing/Node.cs
2020-06-02 12:00:45 +02:00

22 lines
347 B
C#

///
/// Copyright (c) 2020 Sensus Slovensko a.s.
///
using System;
namespace SchematicDrawing
{
public class Node
{
public int X;
public int Y;
public Orient Orient;
public Node(int x, int y, Orient orient)
{
X = x;
Y = y;
Orient = orient;
}
}
}