mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-30 09:54:10 +03:00
Hello WWWWWWorld!
This commit is contained in:
28
mobile_version/src/EditorDataclass.as
Normal file
28
mobile_version/src/EditorDataclass.as
Normal file
@@ -0,0 +1,28 @@
|
||||
package {
|
||||
import flash.display.*;
|
||||
import flash.geom.*;
|
||||
import flash.events.*;
|
||||
import flash.net.*;
|
||||
|
||||
public class EditorDataclass{
|
||||
public function EditorDataclass():void {
|
||||
clear();
|
||||
}
|
||||
|
||||
public function clear():void {
|
||||
numedentities = 0;
|
||||
title = "";
|
||||
creator = "";
|
||||
modifier = "";
|
||||
timeCreated = "";
|
||||
timeModified = "";
|
||||
}
|
||||
|
||||
public var numedentities:int;
|
||||
public var title:String;
|
||||
public var creator:String;
|
||||
public var modifier:String;
|
||||
public var timeCreated:String;
|
||||
public var timeModified:String;
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user