Fixing syntax errors so the demo can run.

This commit is contained in:
Yong Bakos
2013-02-21 18:32:53 -07:00
parent 8a571315dd
commit 775870e585
2 changed files with 9 additions and 12 deletions

View File

@@ -1,4 +1,6 @@
// An ArrayList is used to manage the list of Particles
// An ArrayList is used to manage the list of Particles
// An Iterator is used to remove "dead" particles while iterating over the list
import java.util.Iterator;
class ParticleSystem {
@@ -42,4 +44,4 @@ class ParticleSystem {
}
}
}
}