1 package org
.sevenchan
.dongs
.screens
3 import org
.sevenchan
.AdventureController
;
4 import org
.sevenchan
.dongs
.Screen;
10 public class InfoScreen
extends Screen
12 public static function push
(text
:String):void {
13 AdventureController
.screenQueue
.write
(new InfoScreen
(text
));
14 AdventureController
.screenQueue
.dump
();
17 private var text
:String;
18 public function InfoScreen
(txt
:String="")
21 this.appearanceButton
= true;
22 this.debugMenuButton
= true;
23 this.exportGameButton
= true;
24 this.loadOrSaveButton
= true;
25 this.newGameButton
= false;
26 this.importGameButton
= false;
29 this.setButton
(NEXT_BUTTON
, "Next");
32 override public function processButtonPress
(id
:int):Boolean
41 override public function getScreenText
():String