Advertisement
Guest User

Untitled

a guest
Sep 28th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. public class Assets {
  2.  
  3. public static String paper, stone, scissors, paper_icon, stone_icon, scissors_icon, white;
  4.  
  5. public static void getImg(){
  6. paper = "/images/paper.jpg";
  7. stone = "/images/stone.jpg";
  8. scissors = "/images/scissors.jpg";
  9. paper_icon = "/images/paper.png";
  10. stone_icon = "/images/stone.png";
  11. scissors_icon = "/images/scissors.png";
  12. white = "/images/white.png";
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement