mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-30 01:48:15 +03:00
Hello WWWWWWorld!
This commit is contained in:
23
mobile_version/src/tmap.as
Normal file
23
mobile_version/src/tmap.as
Normal file
@@ -0,0 +1,23 @@
|
||||
package {
|
||||
public class tmap {
|
||||
public static function init():void {
|
||||
for (var i:int = 0; i < 30; i++) {
|
||||
contents.push("");
|
||||
}
|
||||
|
||||
index = 0;
|
||||
}
|
||||
|
||||
public static function reset():void {
|
||||
index = 0;
|
||||
}
|
||||
|
||||
public static function push(t:String):void {
|
||||
contents[index] = t;
|
||||
index++;
|
||||
}
|
||||
|
||||
public static var contents:Vector.<String> = new Vector.<String>;
|
||||
public static var index:int;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user