Skip to content

Instantly share code, notes, and snippets.

@videlais
Created October 22, 2013 20:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save videlais/7107529 to your computer and use it in GitHub Desktop.
Save videlais/7107529 to your computer and use it in GitHub Desktop.
ActionScript 3 Example 7 ExampleRPG Version 1
package
{
/**
* ...
* @author Dan Cox
*/
import org.flixel.*;
[SWF(width="640",height="480",backgroundColor="#000000")]
[Frame(factoryClass="Preloader")]
public class ExampleRPG extends FlxGame
{
public function ExampleRPG()
{
super(320, 240, MenuState, 2);
forceDebugger = false;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment