2003-11-04 Miguel de Icaza <miguel@ximian.com>
[mono.git] / mcs / class / System.Drawing / System.Drawing.Drawing2D / PathData.cs
1 //\r
2 // System.Drawing.Drawing2D.PathData.cs\r
3 //\r
4 // Authors:\r
5 //   Dennis Hayes (dennish@Raytek.com)
6 //   Andreas Nahr (ClassDevelopment@A-SoftTech.com)\r
7 //\r
8 // (C) 2002/3 Ximian, Inc\r
9 //
10 \r
11 using System;\r
12 \r
13 namespace System.Drawing.Drawing2D\r
14 {\r
15         /// <summary>\r
16         /// Summary description for PathData.\r
17         /// </summary>\r
18         public sealed class PathData\r
19         {
20
21                 PointF[] points = null;
22                 byte[] types = null;
23 \r
24                 public PathData()\r
25                 {\r
26                 }
27
28                 public PointF[] Points {
29                         get { return points; } 
30                         set { points = value; }
31                 }
32
33                 public byte[] Types {
34                         get { return types; }
35                         set { types = value; }
36                 }\r
37         }\r
38 }\r