This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Master.as | |
package | |
{ | |
public class Master | |
{ | |
public static var levelData:Vector.<DungeonWorld>; | |
public static var currentLevel:uint = 0; | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package net.thegamestudio | |
{ | |
import flash.events.Event; | |
import flash.events.EventDispatcher; | |
import flash.net.FileFilter; | |
import flash.net.FileReference; | |
import flash.net.URLLoader; | |
import flash.net.URLRequest; | |
import flash.utils.ByteArray; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package | |
{ | |
import net.flashpunk.World; | |
import Master; | |
public class DungeonWorld extends World | |
{ | |
public function DungeonWorld() | |
{ |
NewerOlder