Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
I fix
  • Loading branch information
jdm13003 committed Apr 15, 2016
1 parent 8ba4e50 commit 542c0f9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/Laser.java
Expand Up @@ -17,12 +17,12 @@ public class Laser {

SpriteSheet ss = new SpriteSheet(game.getSpriteSheet());

laser = ss.grabimage(1, 1, 64, 64);
laser = ss.grabimage(2, 3, 64, 64);
}

public void tick(){
x+=1;
y+=1;
x+=10;
//y+=1;
}
public void render(Graphics g){
g.drawImage(laser, (int)x, (int)y, null);
Expand Down

0 comments on commit 542c0f9

Please sign in to comment.