PageRenderTime 44ms CodeModel.GetById 20ms RepoModel.GetById 0ms app.codeStats 0ms

/XSpriter/Image.cs

https://bitbucket.org/dylanwolf/xspriter
C# | 16 lines | 15 code | 1 blank | 0 comment | 0 complexity | 2d2b80cb0f14496f945ac3ed2dfe4568 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. using Microsoft.Xna.Framework.Graphics;
  7. namespace FuncWorks.XNA.XSpriter
  8. {
  9. public class Image
  10. {
  11. public Texture2D Texture;
  12. public Vector2 Pivot;
  13. public Vector2 Dimensions;
  14. }
  15. }