Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.58 KB | None | 0 0
  1. try {
  2.             textures[0] = loadPNG("ff.png");
  3.         } catch (IOException e) {
  4.             e.printStackTrace();
  5.         }
  6.        
  7.         try {
  8.             textures[1] = loadPNG("ie.png");
  9.         } catch (IOException e) {
  10.             e.printStackTrace();
  11.         }
  12.        
  13.         try {
  14.             textures[2] = loadPNG("Particle.png");
  15.         } catch (IOException e) {
  16.             e.printStackTrace();
  17.         }
  18.        
  19.         try {
  20.             textures[3] = loadPNG("spark.png");
  21.         } catch (IOException e) {
  22.             e.printStackTrace();
  23.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement