From 2e46d250e518a0f7f40c05c80703974676e6eb0c Mon Sep 17 00:00:00 2001 From: NathanSweet Date: Wed, 23 Oct 2013 19:04:02 +0200 Subject: [PATCH] Moved Polygon into the Spine namespace. --- spine-csharp/src/SkeletonBounds.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/spine-csharp/src/SkeletonBounds.cs b/spine-csharp/src/SkeletonBounds.cs index 936860b13..b07ba8ad3 100644 --- a/spine-csharp/src/SkeletonBounds.cs +++ b/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]; + } } }