Merge branch 'develop' of https://github.com/ProjectGroepA2/Arcade into develop

Conflicts:
	main/Window.java
	model/drawObjects/Player.java
	model/gameState/PlayState.java
This commit is contained in:
Remco
2015-05-28 09:45:41 +02:00
7 changed files with 68 additions and 26 deletions
+4
View File
@@ -21,6 +21,10 @@ public abstract class DrawObject {
this.index = index;
}
public void setIndex(int index){
this.index = index;
}
public abstract void draw(Graphics2D g2);
public abstract void update();
}