-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.as
More file actions
36 lines (25 loc) · 732 Bytes
/
Main.as
File metadata and controls
36 lines (25 loc) · 732 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package Vortex
{
import flash.display.Sprite;
import flash.display.Graphics;
import flash.utils.getTimer;
import flash.events.*;
import Framework.FG;
import Framework.FGame;
import Framework.Utils.FInternet;
import Vortex.Scenes.*;
import Vortex.Preloader;
[SWF(width='640',height='480',backgroundColor='#333333',frameRate='60')]
[Frame(factoryClass="Vortex.Preloader")]
public class Main extends FGame
{
public function Main():void
{
FG.gameURL = "www.ironswine.com/play/270/Vortex";
FG.gameName = "Vortex";
FG._mochiads_game_id = "90218f200617680c";
//allowedURLs = new Array("ironswine.com", "fgl.com", "flashgamelicense.com", "encodable.com");
super(this, 640, 480, MainMenu);
}
}
}