Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Cleaned up a few warnings of unused stuff
  • Loading branch information
Eyal Minsky-Fenick committed Apr 17, 2016
1 parent 4e25ca4 commit fffc0c6
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 8 deletions.
1 change: 0 additions & 1 deletion src/main/Game.java
Expand Up @@ -2,7 +2,6 @@ package main;


import java.awt.Canvas;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.Graphics;
import java.awt.event.KeyEvent;
Expand Down
6 changes: 0 additions & 6 deletions src/main/Laser.java
Expand Up @@ -2,22 +2,16 @@ package main;

import java.awt.Graphics;
import java.awt.Rectangle;
import java.awt.image.BufferedImage;

import entity.EntityTypeA;

public class Laser extends GameObject implements EntityTypeA{

private Skins skin;
private Game game;



public Laser(double x, double y, Skins skin, Game game){
super(x,y);

this.skin = skin;
this.game = game;

}

Expand Down
1 change: 0 additions & 1 deletion src/main/Player.java
@@ -1,7 +1,6 @@
package main;
import java.awt.Graphics;
import java.awt.Rectangle;
import java.awt.image.BufferedImage;

import entity.EntityTypeA;

Expand Down

0 comments on commit fffc0c6

Please sign in to comment.