Moved Polygon into the Spine namespace.

This commit is contained in:
NathanSweet 2013-10-23 19:04:02 +02:00
parent 7c9f72eef7
commit 2e46d250e5

View File

@ -207,13 +207,13 @@ namespace Spine {
return index == -1 ? null : Polygons[index];
}
}
}
public class Polygon {
public float[] Vertices { get; set; }
public int Count { get; set; }
public class Polygon {
public float[] Vertices { get; set; }
public int Count { get; set; }
public Polygon () {
Vertices = new float[16];
public Polygon () {
Vertices = new float[16];
}
}
}