Browse Source

Moved Polygon into the Spine namespace.

NathanSweet 12 years ago
parent
commit
2e46d250e5
1 changed files with 6 additions and 6 deletions
  1. 6 6
      spine-csharp/src/SkeletonBounds.cs

+ 6 - 6
spine-csharp/src/SkeletonBounds.cs

@@ -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];
+		}
 	}
 }