WorldChampions.as
1 package 2 { 3 import flash.display.MovieClip; 4 import jackboxgames.engine.GameEngine; 5 import jackboxgames.engine.componentLists.DefaultGameComponentList; 6 import jackboxgames.worldchampions.Game; 7 8 [SWF(width="1280",height="720",frameRate="30",backgroundColor="0x000000")] 9 public dynamic class WorldChampions extends MovieClip 10 { 11 12 13 public function WorldChampions() 14 { 15 super(); 16 GameEngine.Initialize("WorldChampions",["games/WorldChampions/jbg.config.jet","jbg.config.jet"],new Game(this),new DefaultGameComponentList()); 17 } 18 } 19 }