Initial commit (r9)
[18plus-7leafadventure.git] / src / org / sevenchan / dongs / screens / StartupScreen.as
blob3b0b571ff1cf1499e268ce634152adb577c8f6b1
1 package org.sevenchan.dongs.screens
3 import org.sevenchan.dongs.*;
4 /**
5 * ...
6 * @author N3X15
7 */
8 public class StartupScreen extends Screen
10 public function StartupScreen()
12 clearButtons();
13 this.appearanceButton = false;
14 this.debugMenuButton = false;
15 this.exportGameButton = false;
16 this.loadOrSaveButton = false;
17 this.newGameButton = true;
18 this.selectPerkButton = false;
21 override public function getScreenText():String
23 var text:String = "<h2>7chan Unnamed Text Adventure</h2>";
24 text += "<p>Inspired by Corruption of Champions by Fenoxo</p>";
25 text += "<p> Written in ActionScript 3 by N3X15 for the Open-Source Flex platform. To see the sourcecode, find me a host that won't got bananas over pornographic content. Ability to host git repositories preferred.</p>";
26 return text;
29 override public function processButtonPress(id:int):Boolean
31 if(id!=-1)
32 return true;
33 updateScreen();
34 return false;