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 utils | |
{ | |
import net.flashpunk.FP; | |
import entities.Player; | |
public class Camera | |
{ | |
private var cameraSpeed:Number; | |
// Camera following information. |
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 | |
{ | |
import net.flashpunk.World; | |
import Master; | |
public class DungeonWorld extends World | |
{ | |
public function DungeonWorld() | |
{ |