mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-11-16 16:09:42 +01:00
19 lines
495 B
ActionScript
19 lines
495 B
ActionScript
|
package {
|
|||
|
import flash.display.*;
|
|||
|
import flash.geom.*;
|
|||
|
import flash.events.*;
|
|||
|
import flash.net.*;
|
|||
|
|
|||
|
public class saveclass extends Sprite {
|
|||
|
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();
|
|||
|
}
|
|||
|
}
|