Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
villiger committed May 16, 2012
1 parent 920188c commit 56cb4f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ch/bbbaden/space/entities/Entity.java
Original file line number Diff line number Diff line change
@@ -45,7 +45,7 @@ public void destroy() {
* @param other The other entity
* @return boolean
*/
public boolean coolides(Entity other) {
public boolean collides(Entity other) {
if (getType() != other.getType()) {
float dx = getX() - other.getX();
float dy = getY() - other.getY();

0 comments on commit 56cb4f1

Please sign in to comment.