i think it works now

master
Marcus Gosselin 2014-11-01 12:30:32 -04:00
parent 0652f56d9e
commit ed490d5cfc
3 changed files with 12 additions and 11 deletions

1
bin/.gitignore vendored
View File

@ -1 +0,0 @@
/MAndApps/

View File

@ -340,5 +340,7 @@ public class SpaceWars implements BasicApp {
public void click() {
// TODO Auto-generated method stub
BOOM(75, 1.2, 100, 100, 100, 50, Engine.mouseX, Engine.mouseY, 550, true, true, 10);
}
}

View File

@ -4,7 +4,7 @@ import MAndEngine.Engine;
public class Main {
public static void main(String[] args) {
Engine engine = new Engine(new String[] {"MAndApps.apps.SpaceWars"}, false);
Engine engine = new Engine(new String[] {"MAndApps.apps.spacewars.SpaceWars"}, false);
engine.run();
}