Polygon.cs 215 B

12345678910111213141516
  1. using System;
  2. namespace Spine
  3. {
  4. public class Polygon
  5. {
  6. public Polygon()
  7. {
  8. this.Vertices = new float[16];
  9. }
  10. public float[] Vertices { get; set; }
  11. public int Count { get; set; }
  12. }
  13. }