Skip to content

Instantly share code, notes, and snippets.

@Draknek
Created January 21, 2011 16:21
Show Gist options
  • Save Draknek/789914 to your computer and use it in GitHub Desktop.
Save Draknek/789914 to your computer and use it in GitHub Desktop.
Minimal AS3 project
package
{
import flash.display.*;
[SWF(width = "640", height = "480")]
public class Main extends Sprite
{
public function Main ()
{
graphics.beginFill(0x000000);
graphics.drawCircle(320, 240, 100);
graphics.endFill();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment