PageRenderTime 47ms CodeModel.GetById 22ms RepoModel.GetById 1ms app.codeStats 0ms

/XSpriter/FrameImage.cs

https://bitbucket.org/dylanwolf/xspriter
C# | 22 lines | 20 code | 2 blank | 0 comment | 0 complexity | e4e6ec7f9be9ef5df231e39cd8397376 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 FrameImage
  9. {
  10. public Int32 TextureFolder;
  11. public Int32 TextureFile;
  12. public Vector2 Position;
  13. public Vector2 Pivot;
  14. public Single Angle;
  15. public Boolean Clockwise;
  16. public Vector2 Scale;
  17. public Int32 TimelineId = -1;
  18. public Int32 Parent = -1;
  19. }
  20. }