10 lines
212 B
C#
10 lines
212 B
C#
using System.Windows;
|
|
|
|
namespace DrawFigureLibrary.Figures
|
|
{
|
|
public class Triangle : PolygonFigure
|
|
{
|
|
public Triangle(string name, Point a, Point b, Point c) : base(name, [a, b, c]) { }
|
|
}
|
|
}
|