PageRenderTime 40ms CodeModel.GetById 15ms RepoModel.GetById 0ms app.codeStats 0ms

/XSpriter/Bone.cs

https://bitbucket.org/dylanwolf/xspriter
C# | 20 lines | 19 code | 1 blank | 0 comment | 0 complexity | 8ce1e2776bb7e4772d144a7cd40c713e MD5 | raw file
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using Microsoft.Xna.Framework;
  6. namespace FuncWorks.XNA.XSpriter
  7. {
  8. public class Bone
  9. {
  10. public Int32 Id;
  11. public Int32 Parent = -1;
  12. public String Name;
  13. public Vector2 Position;
  14. public Vector2 Scale;
  15. public Single Angle;
  16. public Int32 TimelineId = -1;
  17. public Boolean Clockwise;
  18. }
  19. }