Commit aae3234a authored by a.guest's avatar a.guest

renamed package to spaceShooter

parent 55f09740
/data/
/spaceshooter01/
/spaceshooter/
package spaceshooter01;
package spaceshooter;
import processing.core.PApplet;
import processing.core.PImage;
public class SpaceShooter01 extends PApplet {
public class SpaceShooter extends PApplet {
enemyObject asteroid; // object used to define an asteroid
......@@ -73,7 +73,7 @@ public class SpaceShooter01 extends PApplet {
// In this case it starts the processing applet
// this calls settings() followed by setup(), then begins repeatedly calling draw.
public static void main(String[] passedArgs) {
String[] appletArgs = new String[] { "spaceshooter01.SpaceShooter01" };
String[] appletArgs = new String[] { "spaceshooter.SpaceShooter" };
PApplet.main(appletArgs);
}
}
package spaceshooter01;
package spaceshooter;
import processing.core.PApplet;
import processing.core.PImage;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment