/$(BaseDir)/Projects/115 ActionScript 3 - Flixel 2.5 Project/src/$(ProjectID).as.template
Unknown | 28 lines | 14 code | 14 blank | 0 comment | 0 complexity | 16bdf7642066b72051a72c173086d94f MD5 | raw file
1package 2 3{ 4 5 import org.flixel.*; 6 7 [SWF(width="640", height="480", backgroundColor="#000000")] 8 9 [Frame(factoryClass="Preloader")] 10 11 12 13 public class $(ProjectID) extends FlxGame 14 15 { 16 17 public function $(ProjectID)() 18 19 { 20 21 super(320,240,MenuState,2, 60, 60); 22 forceDebugger = true; 23 } 24 25 } 26 27} 28