1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-14 08:43:37 +02:00
VVVVVV/mobile_version/src/edlevelclass.as
Terry Cavanagh 72d018ea04 Update mobile version to mobile v2.2.1
The android version just got a much needed update to fix some resolution issues on devices with cutouts.

It turns out the mobile source was actually pretty out of date, like 3 versions out of date! This commit brings it up to date.

All the changes have just been about keeping the game running on modern devices, though. The biggest change was adding the Starling library to the project, which made the game GPU powered and sped the whole thing up.
2022-12-02 18:19:58 +01:00

23 lines
664 B
ActionScript

package {
public class edlevelclass{
public function edlevelclass():void {
clear();
}
public function clear():void {
tileset = 0; tilecol = 0;
roomname = "";
warpdir = 0;
platx1 = 0; platy1 = 0; platx2 = 320; platy2 = 240; platv = 4;
enemyx1 = 0; enemyy1 = 0; enemyx2 = 320; enemyy2 = 240; enemytype = 0;
directmode = 0;
}
public var tileset:int, tilecol:int;
public var roomname:String;
public var warpdir:int;
public var platx1:int, platy1:int, platx2:int, platy2:int, platv:int;
public var enemyx1:int, enemyy1:int, enemyx2:int, enemyy2:int, enemytype:int;
public var directmode:int;
}
};