1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-25 22:18:30 +02:00
VVVVVV/mobile_version/src/LevelMetaData.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

42 lines
847 B
ActionScript

package {
import flash.geom.*;
import flash.events.*;
import flash.net.*;
public class LevelMetaData{
public function LevelMetaData():void {
clear();
}
public function clear():void {
title = "";
creator = "";
Desc1 = "";
Desc2 = "";
Desc3 = "";
website = "";
filename = "";
file_num = 0;
modifier = "";
timeCreated = "";
timeModified = "";
version = 0;
}
public var title:String;
public var creator:String;
public var Desc1:String;
public var Desc2:String;
public var Desc3:String;
public var website:String;
public var filename:String;
public var file_num:int;
public var modifier:String;
public var timeCreated:String;
public var timeModified:String;
public var version:int;
}
};