Guest User

Untitled

a guest
Jun 24th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.33 KB | None | 0 0
  1. namespace CastleDefence.Models
  2. {
  3.     struct SpriteInfo
  4.     {
  5.         //Name of sprite file
  6.         public int Name { get; private set; }
  7.  
  8.         public Texture2D Texture {get;private set;}
  9.  
  10.         public int Frames {get;private set;}
  11.     public int FrameHeight {get;private set;}
  12.     public int FrameWidth {get;private set;}
  13.     }
  14. }
Add Comment
Please, Sign In to add comment