Advertisement
Guest User

Untitled

a guest
Mar 5th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.11 KB | None | 0 0
  1. BitmapImage[] upMoviment = new BitmapImage[] {
  2. new BitmapImage(new Uri(@"ms-appx:///Assets/upAnimation/0.png")),
  3. new BitmapImage(new Uri(@"ms-appx:///Assets/upAnimation/1.png")),
  4. new BitmapImage(new Uri(@"ms-appx:///Assets/upAnimation/2.png")),
  5. new BitmapImage(new Uri(@"ms-appx:///Assets/upAnimation/3.png")),
  6. new BitmapImage(new Uri(@"ms-appx:///Assets/upAnimation/4.png")),
  7. new BitmapImage(new Uri(@"ms-appx:///Assets/upAnimation/5.png")),
  8. new BitmapImage(new Uri(@"ms-appx:///Assets/upAnimation/6.png")),
  9. new BitmapImage(new Uri(@"ms-appx:///Assets/upAnimation/7.png")),
  10. new BitmapImage(new Uri(@"ms-appx:///Assets/upAnimation/8.png"))
  11.  
  12. };
  13. BitmapImage[] downMoviment = new BitmapImage[] {
  14. new BitmapImage(new Uri(@"ms-appx:///Assets/downAnimation/0.png")),
  15. new BitmapImage(new Uri(@"ms-appx:///Assets/downAnimation/1.png")),
  16. new BitmapImage(new Uri(@"ms-appx:///Assets/downAnimation/2.png")),
  17. new BitmapImage(new Uri(@"ms-appx:///Assets/downAnimation/3.png")),
  18. new BitmapImage(new Uri(@"ms-appx:///Assets/downAnimation/4.png")),
  19. new BitmapImage(new Uri(@"ms-appx:///Assets/downAnimation/5.png")),
  20. new BitmapImage(new Uri(@"ms-appx:///Assets/downAnimation/6.png")),
  21. new BitmapImage(new Uri(@"ms-appx:///Assets/downAnimation/7.png")),
  22. new BitmapImage(new Uri(@"ms-appx:///Assets/downAnimation/8.png"))
  23.  
  24. };
  25. BitmapImage[] rightMoviment = new BitmapImage[] {
  26. new BitmapImage(new Uri(@"ms-appx:///Assets/rightAnimation/0.png")),
  27. new BitmapImage(new Uri(@"ms-appx:///Assets/rightAnimation/1.png")),
  28. new BitmapImage(new Uri(@"ms-appx:///Assets/rightAnimation/2.png")),
  29. new BitmapImage(new Uri(@"ms-appx:///Assets/rightAnimation/3.png")),
  30. new BitmapImage(new Uri(@"ms-appx:///Assets/rightAnimation/4.png")),
  31. new BitmapImage(new Uri(@"ms-appx:///Assets/rightAnimation/5.png")),
  32. new BitmapImage(new Uri(@"ms-appx:///Assets/rightAnimation/6.png")),
  33. new BitmapImage(new Uri(@"ms-appx:///Assets/rightAnimation/7.png")),
  34. new BitmapImage(new Uri(@"ms-appx:///Assets/rightAnimation/8.png"))
  35.  
  36. };
  37. BitmapImage[] leftMoviment = new BitmapImage[] {
  38. new BitmapImage(new Uri(@"ms-appx:///Assets/leftAnimation/0.png")),
  39. new BitmapImage(new Uri(@"ms-appx:///Assets/leftAnimation/1.png")),
  40. new BitmapImage(new Uri(@"ms-appx:///Assets/leftAnimation/2.png")),
  41. new BitmapImage(new Uri(@"ms-appx:///Assets/leftAnimation/3.png")),
  42. new BitmapImage(new Uri(@"ms-appx:///Assets/leftAnimation/4.png")),
  43. new BitmapImage(new Uri(@"ms-appx:///Assets/leftAnimation/5.png")),
  44. new BitmapImage(new Uri(@"ms-appx:///Assets/leftAnimation/6.png")),
  45. new BitmapImage(new Uri(@"ms-appx:///Assets/leftAnimation/7.png")),
  46. new BitmapImage(new Uri(@"ms-appx:///Assets/leftAnimation/8.png"))
  47.  
  48. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement