Advertisement
TankorSmash

Untitled

Aug 13th, 2012
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. public void GoToNextFrame()
  2. {
  3. this.index.X++;
  4. if (this.index.X >= this.rows)
  5. {
  6. this.index.X = 0;
  7. this.index.Y++;
  8. if (this.index.Y >= this.columns)
  9. this.index.Y = 0;
  10.  
  11. }}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement