瀏覽代碼

Moved Polygon into the Spine namespace.

NathanSweet 12 年之前
父節點
當前提交
2e46d250e5
共有 1 個文件被更改,包括 6 次插入6 次删除
  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];
+		}
 	}
 }