1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-03 03:23:33 +02:00
VVVVVV/mobile_version/src/edentitiesclass.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

18 lines
392 B
ActionScript

package {
public class edentitiesclass {
public function edentitiesclass():void {
clear();
}
public function clear():void{
x = 0; y = 0; t = 0;
p1 = 0; p2 = 0; p3 = 0; p4 = 0; p5 = 0; p6 = 0;
scriptname = "";
}
public var x:int, y:int, t:int;
public var scriptname:String;
public var p1:int, p2:int, p3:int, p4:int, p5:int, p6:int;
}
};