-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathPROJECT_LANG_1.as
13 lines (13 loc) · 904 Bytes
/
PROJECT_LANG_1.as
1
2
3
4
5
6
7
8
9
10
11
12
13
// Start of script
// I have chosen ActionScript as the main project language file for this project (Snail Bob Maker) as this game is based off of a flash game (ActionScript-based) series, and should be preserved in its native language. Emulation will be done with Ruffle-rs or another open source flash player.
// Main
var txtHello: TextField = new TextField();
txtHello.text = "I have chosen ActionScript as the main project language file for this project (Snail Bob Maker) as this game is based off of a flash game (ActionScript-based) series, and should be preserved in its native language. Emulation will be done with Ruffle-rs or another open source flash player.";
this.addChild(txtHello);
break;
/* File info
* File type: ActionScript 3.0 source file (*.as)
* File version: 1 (Wednesday, August 25th 2021 at 9:27 pm)
* Line count (including blank lines and compiler line): 14
*/
// End of script