mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-11-17 16:39:42 +01:00
72d018ea04
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.
17 lines
451 B
ActionScript
17 lines
451 B
ActionScript
package {
|
|
import flash.geom.*;
|
|
import flash.events.*;
|
|
import flash.net.*;
|
|
|
|
public class saveclass {
|
|
public function saveclass():void {
|
|
}
|
|
|
|
public var explored:Array;// = new Array();
|
|
public var flags:Array;// = new Array();
|
|
public var crewstats:Array;// = new Array();
|
|
public var collect:Array;// = new Array();
|
|
public var customcollect:Array;// = new Array();
|
|
public var moods:Array;// = new Array();
|
|
}
|
|
}
|