| Issue 6: | Asteroids should collide with each other | |
| 1 person starred this issue and may be notified of changes. | Back to list |
A few line fix that will be in the asteroid collide method.
public void collide(SObject s) {
if(s instanceof Asteroid) {
doStuff()
}
}
|