Fix hair, dick around with new game screen.
[18plus-7leafadventure.git] / src / org / sevenchan / dongs / screens / StartupScreen.as
blob6dd9588bde4ae716dd775b9d3949a617dc7da6ee
1 package org.sevenchan.dongs.screens
3 import org.sevenchan.dongs.*;
4 /**
5 * ...
6 * @author Harbinger
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;
20 override public function getScreenText():String
22 var text:String = "<h2>Adventure of the Seven Leaves</h2>";
23 text += "<p>Inspired by Corruption of Champions by Fenoxo</p>";
24 text += "<p>Written in ActionScript 3 by Harbinger for the Open-Source Adobe Flex 4 platform. Visit <a href=\"http://adventure.nexisonline.net\">the project blog</a> for sourcecode links, updates, and news, among other silly bullshit.</p>";
25 return text;
28 override public function processButtonPress(id:int):Boolean
30 if(id!=-1)
31 return true;
32 updateScreen();
33 return false;