Skip to content

Commit

Permalink
gitignore list and a blank screen
Browse files Browse the repository at this point in the history
  • Loading branch information
Zutty committed Mar 11, 2012
1 parent 34a9b1a commit af39520
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .gitignore
@@ -0,0 +1,6 @@

/.actionScriptProperties
/.project
/html-template
/.settings
/bin-debug
17 changes: 17 additions & 0 deletions src/EvilVille.as
@@ -0,0 +1,17 @@
package
{
import flash.display.Sprite;

import net.flashpunk.Engine;
import net.flashpunk.FP;

public class EvilVille extends Engine {

public function EvilVille() {
super(640, 480, 60, false);
FP.screen.scale = 1;
FP.screen.color = 0x000000;
//FP.console.enable();
}
}
}

0 comments on commit af39520

Please sign in to comment.